与Android NDK相关的错误

时间:2013-08-20 04:44:46

标签: android video android-ndk

在我的Android设备中运行this会给我这些错误。


    Exception Ljava/lang/UnsatisfiedLinkError; thrown while initializing Lffvideolivewallpaper/frankandrobot/com/NativeCalls;
    Shutting down VM
    threadid=1: thread exiting with uncaught exception (group=0x40ed42a0)
    FATAL EXCEPTION: main
    java.lang.ExceptionInInitializerError
    at ffvideolivewallpaper.frankandrobot.com.VideoLiveWallpaper.onSharedPreferenceChanged(VideoLiveWallpaper.java:144)
    at ffvideolivewallpaper.frankandrobot.com.VideoLiveWallpaper.onCreate(VideoLiveWallpaper.java:78)
    at android.app.ActivityThread.handleCreateService(ActivityThread.java:2404)
    at android.app.ActivityThread.access$1600(ActivityThread.java:140)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1309)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:137)
    at android.app.ActivityThread.main(ActivityThread.java:4898)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:511)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1006)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:773)
    at dalvik.system.NativeStart.main(Native Method)
    Caused by: java.lang.UnsatisfiedLinkError: Couldn't load avcore: findLibrary returned null
    at java.lang.Runtime.loadLibrary(Runtime.java:365)
    at java.lang.System.loadLibrary(System.java:535)
    at ffvideolivewallpaper.frankandrobot.com.NativeCalls.(NativeCalls.java:42)
    ... 13 more

我认为这些错误与Android NDK有关。任何人都可以指导我这一点,请记住,我没有Android NDK及其工作原理。

2 个答案:

答案 0 :(得分:0)

如果我们在已安装旧版本的设备上安装应用程序,可能会发生这种情况我们总是会遇到这种错误:

看看这个类似的问题:https://groups.google.com/d/topic/android-ndk/YmKly4zEMQ0/discussion

答案 1 :(得分:0)

我找到了我收到此错误的原因,因为我没有构建本机库。我使用了ndk-build,错误得到了解决。