I have added a libs folder to my project root and the libs contain two jar files. When I compile the source, I get the APK created. When I unzip the APK, I cannot see the libs folder in it? Why this behavoir, as I believe libs should be bundled with APK?
Share
When you include a
jarthen a relevant code from there gets transformed into bytecode the same as your own code and it all becomes a singledexfile withinapk.It is native
*.solibraries which you create in C/C++ with the NDK for your project they get bundled into your apk as*.sofiles. Because they are not in Java.