android port error

Announce new projects or updates of Irrlicht Engine related tools, games, and applications.
Also check the Wiki
Post Reply
xingshh
Posts: 2
Joined: Wed Oct 31, 2012 6:15 am

android port error

Post by xingshh »

i am newer for irrilcht. i download the last version from svn(branches\ogl-es, version4351). I only want use irrlich as lib, so i add code to jni and get the lib. but when i use fellowing code to load the lib in android :
static
{
try
{
System.loadLibrary("abcd");
}
catch(Throwable e)
{
Log.e("xxx", e.toString());
throw new RuntimeException(e);
}
}

get the error java.lang.RuntimeException: java.lang.UnsatisfiedLinkError: Library abcd not found.
i used the old version lid form http://gitorious.org/irrlichtandroid/ir ... its/master. irrlicht version is 1.7. it is ok.
I find it is caused the code about nativeactivity. I cancel those code , this error is disappear, but can not run and has other error.
the irrlicht new version is only support native activity ? not support lib?
has anyone can help me. thx
Post Reply