[android-developers] Re: How to call native (JNI) code from test application

2011-10-28 Thread Studio LFP
The static initializer of your Java wrapper should be loading the library. Do you have a System.loadLibrary() call in there? If you do, make sure you have copied the .so file into the proper location in the libs directory of your project. Steven Studio LFP http://www.studio-lfp.com On

[android-developers] Re: How to call native (JNI) code from test application

2011-10-28 Thread mellery451
argh - you are correct. I just checked the LogCat output and I now see that the library is in-fact being loaded, but the method call itself is failing to resolve. Upon further inspection, it turns out I renamed my method but forgot to rename it in the native implementation file. Fixed that and