Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android bitmap native code - linking problem

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?

like image 720
Anil Arrabole Avatar asked Feb 08 '11 22:02

Anil Arrabole


3 Answers

After a brief research I got to know that I need to add

`LOCAL_LDFLAGS += -ljnigraphics` 

in Android.mk file.

like image 113
Anil Arrabole Avatar answered Nov 14 '22 14:11

Anil Arrabole


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} )
like image 29
Asaber Avatar answered Nov 14 '22 13:11

Asaber


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.

like image 37
SilverCorvus Avatar answered Nov 14 '22 12:11

SilverCorvus