You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set APP_ABI := armeabi in Application.mk, and compiled all so files. When I
try to play a video, I get the error below:
01-09 21:33:00.468: I/dalvikvm(2209): Unable to
dlopen(/data/data/com.broov.player/lib/libapplication.so): Cannot load library:
reloc_library[1244]: 92 cannot locate 'iconv_open'...
My device is htc hero, with ARMv6-compatible processor. Android os is 2.1.
How can I run this project on this device??
Original issue reported on code.google.com by eidolonS...@gmail.com on 9 Jan 2013 at 2:33
The text was updated successfully, but these errors were encountered:
Please confirm, if the following library is loaded before
System.loadLibrary("libapplication.so")
Looks like System.loadLibrary("libiconv.so") is not present or is loading a
pre-existing library from the default system path.
Try to load "iconv" library from our path in java.
Another option is to compile the iconv library using a different name(for eg:-
"broov_iconv") and loading it before "libapplication.so".
Let me know, if this solves your problem
I followed your second suggestion "Another option is to compile the iconv
library using a different name(for eg:- "broov_iconv") and loading it before
"libapplication.so"."
Finally the problem is solved.
Thanks very much!!!!!
Original comment by eidolonS...@gmail.com on 10 Jan 2013 at 12:40
Original issue reported on code.google.com by
eidolonS...@gmail.com
on 9 Jan 2013 at 2:33The text was updated successfully, but these errors were encountered: