Eclipse Android Package Does Not Include .so File From A Library Project
Here is my project layout. Project MyLib - Android library project. It contains jni directory that creates libMyA.so. Project MyMain - Android application project. In Eclipse, I ha
Solution 1:
For eclipse users,only two steps needed:
1. Set Library project by right-click on lib project name --> properties --> Android --> Mark "Is Library" checkbox.
2.In the project use the shared object, add a reference to the libraray project by right-click on project name --> properties --> Android --> Library/"Add".
After you build the project ,the result apk file would include those .so libs.
Post a Comment for "Eclipse Android Package Does Not Include .so File From A Library Project"