2

好吧,我一直在左右浏览帖子试图找出这个错误..我已经设法修复了一些错误,但这只是让我发疯..它几乎没有信息..或者至少没有对我来说有任何意义。

  D/dalvikvm(431): Trying to load lib /data/data/com.hyperlinkup.manglerbt/lib/libventrilo_interface.so 0x405156c8
D/dalvikvm(431): Added shared lib /data/data/com.hyperlinkup.manglerbt/lib/libventrilo_interface.so 0x405156c8
D/dalvikvm(431): No JNI_OnLoad found in /data/data/com.hyperlinkup.manglerbt/lib/libventrilo_interface.so 0x405156c8, skipping init
D/dalvikvm(431): GC_EXTERNAL_ALLOC freed 61K, 53% free 2565K/5379K, external 1027K/1038K, paused 89ms
W/dalvikvm(431): No implementation found for native Lcom/hyperlinkup/manglerbt/VentriloInterface;.debuglevel (I)I
D/AndroidRuntime(431): Shutting down VM
W/dalvikvm(431): threadid=1: thread exiting with uncaught exception (group=0x40015560)
E/AndroidRuntime(431): FATAL EXCEPTION: main
E/AndroidRuntime(431): java.lang.UnsatisfiedLinkError: debuglevel
E/AndroidRuntime(431):  at com.hyperlinkup.manglerbt.VentriloInterface.debuglevel(Native Method)
E/AndroidRuntime(431):  at com.hyperlinkup.manglerbt.ServerList.onCreate(ServerList.java:96)
E/AndroidRuntime(431):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/AndroidRuntime(431):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1611)
E/AndroidRuntime(431):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1663)
E/AndroidRuntime(431):  at android.app.ActivityThread.access$1500(ActivityThread.java:117)
E/AndroidRuntime(431):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:931)
E/AndroidRuntime(431):  at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime(431):  at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime(431):  at android.app.ActivityThread.main(ActivityThread.java:3683)
E/AndroidRuntime(431):  at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(431):  at java.lang.reflect.Method.invoke(Method.java:507)
E/AndroidRuntime(431):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
E/AndroidRuntime(431):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
E/AndroidRuntime(431):  at dalvik.system.NativeStart.main(Native Method)
I/Process(431): Sending signal. PID: 431 SIG: 9

我正在尝试重新设计 Mangler 应用程序以使用蓝牙录音(通过 startBluetoothSco),但我想确保原件在合并蓝牙功能之前可以正常工作。我将非常感谢我能在这件事上获得的任何帮助。

编辑:想也许我的问题是 jni_wrappers.c .. 前 3 个#include 没有解决.. 原始版本是在 linux 系统上出现的,所以它正在寻找 jni.h、stdint.h 和 ventrilo3.h

4

1 回答 1

0

答案在 Logcat Stacktrace 本身

未找到本机 Lcom/hyperlinkup/manglerbt/VentriloInterface;.debuglevel (I)ID/AndroidRuntime(431) 的实现:关闭 VM

中调用debuglevel了一个 Native 方法VentriloInterface。你还没有实现那个方法。因此,VM 抛出java.lang.UnsatisfiedLinkError.

于 2013-04-20T05:48:48.927 回答