How To Add The Libandenginephysicsbox2dextension.so File In Android Studio | Andengine
Solution 1:
you can follow my answer here https://stackoverflow.com/a/34068202/2026280
or
Its very simple. Follow this simple steps
1) Create a new folder called "lib" inside the libs folder of the main app.
2) Copy all the folders ie.armabi , armabi-v7a etc from andEnginePhysicsBox2DExtension/libs folder, and paste in in the previously created "lib" folder in main app.
3) Now compress the "lib" folder as "lib.zip" and rename it to "lib.jar". this changes the zip extension to jar.
4) Finally add a line -- compile files('lib.jar') under dependencies{} in Build.gradle file of your main app.
5) Clean and build the project.
Solution 2:
Mine is located in a directory under you application.
file : https://www.dropbox.com/s/71lxz2ec9qrn236/libandenginephysicsbox2dextension.so?dl=0
Post a Comment for "How To Add The Libandenginephysicsbox2dextension.so File In Android Studio | Andengine"