我正在尝试在我的应用程序中实现PJSUA2。到目前为止,我创建了jniLib文件夹,并在其中添加了所有库类,例如:armeabi,armeabi-v7a,X86。
在我的代码中,我添加了这个SIB块:
static {
try{
System.loadLibrary("openh264");
// Ticket #1937: libyuv is now included as static lib
//System.loadLibrary("yuv");
} catch (UnsatisfiedLinkError e) {
System.out.println("UnsatisfiedLinkError: " + e.getMessage());
System.out.println("This could be safely ignored if you " +
"don't need video.");
}
System.loadLibrary("pjsua2");
System.out.println("Library loaded");
}
一旦我尝试运行该应用程序,我的应用程序就会因以下错误而崩溃:
java.lang.UnsatisfiedLinkError: No implementation found forpjsua2JNI.swig_module_init()
在处理示例应用程序时,它们都可以正常工作,但是当我在新应用程序中尝试使用同一代码时,它们会崩溃。请帮帮我。