I started android application development and followed this tutorial:

http://mindtherobot.com/blog/452/android-beginners-ndk-setup-step-by-step/ but the application didn't work. I debug it and the log cat show this message: JNI_Onload not found..how can I solve this problem?

Thanks

link|improve this question

0% accept rate
feedback

1 Answer

JNI_OnLoad is a debug-level message that just lets you know that the function wasn't found.

It's there because people occasionally write JNI_OnLoad without the 'extern "C"' declaration and then aren't sure why things don't work.

The problem you're facing is probably unrelated to the message. Look at the nearby logcat output for clues. dlopen() failures and Java exceptions are likely relevant.

You should paste some of that into a question, and perhaps describe the failure in more detail ("didn't work" is a little vague).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.