Creating Android App Using Openmax Library In Gb, But Showing Not Found?
I'm trying to develop android app, in gingerbread using OpenMAX-AL. Basically openMAX-AL library not supporatable in GingerBread.So im using the openmax-al libray from ics (by buil
Solution 1:
During linking loader will only look for symbol references in dynamically linked libraries.
What you tried is may be copied OPENMAXAL.so
to the android-8/usr/lib
then compiled,, but when app runs, any library linked as below
LOCAL_LDLIBS += -lOpenMAXAL
should be in android's /system/libs/
.
As for GB, this will not be the case! Have you tried pushing the so to /system/lib/
?
Post a Comment for "Creating Android App Using Openmax Library In Gb, But Showing Not Found?"