class A{
static {
System.loadLibrary("test");
};
...
public B()
{
}
private native static void native_ClassInit();
}
When try to register using
env->RegisterNatives(env,"com/test/A$B",bMethodssizeof(medthods)
/sizeof(medthods[0]));
I got the following error:
Error info:
No implementation found for native Lcom/test/A;.native_ClassInit ()V
Who knows how to do it?
--~--~---------~--~----~------------~-------~--~----~
unsubscribe: [email protected]
website: http://groups.google.com/group/android-porting
-~----------~----~----~----~------~----~------~--~---