I have a problem when compiling my app, which is inspired from bitmap-plasma. I was calling
    if ((ret = AndroidBitmap_getInfo(env, bitmap, &info)) < 0) {
    LOGE("AndroidBitmap_getInfo() failed ! error=%d", ret);
    return;
}
if (info.format != ANDROID_BITMAP_FORMAT_RGB_565) {
    LOGE("Bitmap format is not RGB_565 !");
    return;
}
if ((ret = AndroidBitmap_lockPixels(env, bitmap, &pixels)) < 0) {
    LOGE("AndroidBitmap_lockPixels() failed ! error=%d", ret);
}
       /*****code here***********/
AndroidBitmap_unlockPixels(env, bitmap);
I have included android/bitmap.h in my source file. I am using android-ndk-r5b and sdk-9 on ubuntu 10.10.
I am getting an error
 /home/user5432/workspace/bitmapproj/obj/local/armeabi/objs-debug/mybitmap.o : In function Java_com_example_plasma_PlasmaView_renderPlasma
"undefined reference to AndroidBitmap_getInfo"
"undefined reference to AndroidBitmap_lockPixels"
"undefined reference to AndroidBitmap_unlockPixels"
The problem is with debug code. But what is the problem? Can anybody has an answer?
After a brief research I got to know that I need to add
`LOCAL_LDFLAGS += -ljnigraphics` 
in Android.mk file.
I have solved by adding the line "-ljnigraphics" in the file "CMakeList.txt":
"target_link_libraries( # Specifies the target library.
                       native-lib
                       -ljnigraphics
                       # Links the target library to the log library
                       # included in the NDK.
                       ${log-lib} )
                        If using Android Studio, you will need to add the library to the gradle.build file as well.
android {
    ...
    defaultConfig {
        ...
        ndk {
            ldLibs = ["android", "jnigraphics", <other ndk libraries you might need>]
            moduleName "webcam"
        }
    }
}
It seems that gradle ignores the Android.mk file for ndk dependencies. See undefined reference to `__android_log_print', particularly Stephen Kaiser's comment to the selected answer and BoredT's answer.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With