build - Android/Gradle: Where is this dependency embedded? -
i'm using new android build system based on gradle, access preview android studio. now, have 2 projects: android library project, , android app project (basically demo library).
in library project have added dependency gson library, build.gradle file looks this:
dependencies { compile 'com.android.support:support-v4:13.0.+' compile 'com.google.code.gson:gson:2.2.+' } still, works fine , dandy , i'm able use gson in library , app. want understand where library embedded. i've opened both .aar built library project , .apk of demo app. expecting find jars 2 dependencies in @ least 1 of these, didn't.
so they?
from android tools website:
these items, plus output of compilation of project’s own source code, sent dex bytecode conversion , inclusion in final apk.
in other words, in *.dex file inside apk.
Comments
Post a Comment