I'm working on some script for custom build system and i need to pack some .so files in android apk (aars with native libs are not yet supported).
I've invoked ./gradlew assembleDebug --debug
for the apk
project that depends on aar
with native libraries (.so
) to get full log but did not find any .so files paths passed to aapt or any other android build tool (though i've seen .so stripping commands with ndk strip tool).
How is it done in details? Does aapt
tool do it? Are there any aapt arguments for this or they should be just stored on some specific paths (eg. libs
).