代码已经编译完毕,libs/armeabi下也已经有2个.so文件?? libgame.so & libgnustl_shared.so
Activity的代码如下
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
}
static
{
System.loadLibrary("game");
}
错误信息如下
java.lang.UnsatisfiedLinkError: Cannot load library: link_image: 80 could not load needed library ‘libgnustl_shared.so’ for ‘libgame.so’ (load_library: Library ‘libgnustl_shared.so’ not found)
我在 System.loadLibrary(“game”); 上加入了 System.loadLibrary(“gnustl_shared”);也没用,依然报错
Caused by: java.lang.UnsatisfiedLinkError: Cannot load library: reloc_library: 80 cannot locate ‘__aeabi_ldiv0’…
请问各位大神这情况如何解决?