我在我的项目中使用renderscript库,我在三星S4 I9500上完美地运行了我的apk。但当我在其他手机上尝试这个时,我就会崩溃。
No JNI_OnLoad found in /system/lib/libRSSupport.so 0x4185f0f0, skipping init
02-23 19:42:40.370 8994-8994/com.example.gameboy.gununtesti E/dalvikvm﹕ ERROR: couldn't find native method
02-23 19:42:40.370 8994-8994/com.example.gameboy.gununtesti E/dalvikvm﹕ Requested: Landroid/support/v8/renderscript/RenderScript;._nInit:()V
02-23 19:42:40.370 8994-8994/com.example.gameboy.gununtesti E/JNIHelp﹕ RegisterNatives failed for 'android/support/v8/renderscript/RenderScript', aborting
02-23 19:42:40.370 8994-8994/com.example.gameboy.gununtesti A/libc﹕ Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 8994任何帮助都很感激。谢谢。
发布于 2015-02-23 21:12:18
您忘记将libRSSupport.so +其他本机库包含在.apk中。这是试图加载系统版本的兼容性,库,这将不能与您的应用程序。
https://stackoverflow.com/questions/28680072
复制相似问题