java.lang.UnsatisfiedLinkError: Couldn't load andenginephysicsbox2dextension- Android

后端 未结 2 776
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-04 03:06

I\'m trying to work with andengine in \"Android studio, not eclipse\" and im getting this error when i run the project.

9442-29483/com.make         


        
2条回答
  •  死守一世寂寞
    2020-12-04 03:30

    Place your jni precompiled libraries (.so files) as per the following structure

    app->src->jniLibs
    
        ->armeabi->your_libs.so
    
        ->armeabi-v7a->your_libs.so
    
        ->x86 ->your_libs.so
    
    • Where app is your main app
    • and jniLibs is the default folder which is picked up automatically (keep this exact folder name)

提交回复
热议问题