android-eye
android-eye copied to clipboard
Getting it to run, missing LibMediaEncoder.so
I have tried opening this in Eclipse and Android Studio, I have installed the NDK for both but I get this error
02-18 20:30:36.288: E/AndroidRuntime(1918): FATAL EXCEPTION: main
02-18 20:30:36.288: E/AndroidRuntime(1918): Process: teaonly.droideye, PID: 1918
02-18 20:30:36.288: E/AndroidRuntime(1918): java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/teaonly.droideye-1/base.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]] couldn't find "libMediaEncoder.so"
02-18 20:30:36.288: E/AndroidRuntime(1918): at java.lang.Runtime.loadLibrary(Runtime.java:366)
02-18 20:30:36.288: E/AndroidRuntime(1918): at java.lang.System.loadLibrary(System.java:989)
02-18 20:30:36.288: E/AndroidRuntime(1918): at teaonly.droideye.MainActivity.
Hi Burf., Have you got these working? If yes please let me know how. Thanks.
where i can get libMediaencoder.so?
The same issue ((
same issue , even download a libMediaEncoder.so from https://github.com/drewx2/android_vendor_htc_dlx/tree/master/proprietary/lib
same issue
How to solve this problem? dlopen("/data/app-lib/teaonly.droideye-2/libMediaEncoder.so") failed: dlopen failed: cannot locate symbol "_ZN7android8OMXCodec18findMatchingCodecsEPKcbS2_jPNS_6VectorINS_7String8EEEPNS3_IjEE" referenced by "libMediaEncoder.so"...
On the github is two different versions of libMediaEncoder.so. The first is for armeabi, the second - for armeabi-v7a. When you use the first vesrsion, Application.mk must declare APP_ABI:= armeabi. When you use the second version, Application.mk must declare APP_ABI:= armeabi-v7a. The first version is of 960 kB length. The second version is of 962 kB length. When confusing versions the compiler gives an error.
@medynets can you share links to libMediaEncoder.so?