Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to use the NDK with C++ and can't seem to get the method naming convention correct. my native method is as follows:

extern "C" {
JNIEXPORT void JNICALL Java_com_test_jnitest_SurfaceRenderer_drawFromJni
(JNIEnv* env, jclass c)
{
   //
}
}

with a header wrapped in extern "C" {} aslo.

Everything compiles fine, creates a .so file and copies to the libs folder under my project, but when I debug and run in Eclipse I keep getting a log cat message that of "no implementation found for native...". Is there something i'm missing as all the NDK examples are in C?

Thanks.

share|improve this question
Are you generating your JNI stubs using javah? If not, you should be. :-P – Chris Jester-Young Feb 4 '10 at 7:02

4 Answers

up vote 3 down vote accepted

There is a cpp example under apps in ndk: http://android.git.kernel.org/?p=platform/development.git;a=blob_plain;f=ndk/apps/hello-gl2/project/jni/gl_code.cpp;hb=HEAD

share|improve this answer
link is dead... – Andrew Prock Apr 2 '12 at 18:32
1  
you can find the cpp file in android-ndk/samples/hello-gl2 which is part of Android NDK distribution – Yenchi Apr 21 '12 at 19:16

There are a couple of things that can lead to "no implementation found". One is getting the function prototype name wrong, another is failing to load the .so at all. Are you sure that System.loadLibrary() is being called before the method is used?

If you don't have a JNI_OnLoad function defined, you may want to create one and have it spit out a log message just to verify that the lib is getting pulled in successfully.

You already dodged the most common problem -- forgetting to use extern "C" -- so it's either the above or some slight misspelling. What does the Java declaration look like?

share|improve this answer
Jesus! You saved me hours worth of work - upon reading this I had just remembered I had my loadLibrary call commented out... – blissfreak May 1 '12 at 0:33
You saved me too! I quadruple-checked my function name and a couple of other things... but I forgot extern "C", and didn't even notice it in the question! – Qwertie May 25 '12 at 20:30
Now on the Android docs site: developer.android.com/training/articles/perf-jni.html#faq_ULE – fadden Dec 15 '12 at 0:49

Use javah (part of Java SDK). Its the tool exactly for this (generates .h header from .class file).

share|improve this answer

I had the same problem, but to me the error was in the file Android.mk. I had it:

LOCAL_SRC_FILES := A.cpp
LOCAL_SRC_FILES := B.cpp 

but should have this:

LOCAL_SRC_FILES := A.cpp
LOCAL_SRC_FILES += B.cpp 

note the detail += instead :=

I hope that helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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