JNI異常: java.lang.UnsatisfiedLinkError: dlopen failed: ***.so: has text relocations

自己寫案例的時候用了一個別人的.so文件出現瞭如下問題:

? E/AndroidRuntime: FATAL EXCEPTION: main
                                                   Process: com.example.meitu, PID: 16183
                                                   java.lang.UnsatisfiedLinkError: dlopen failed: /data/app/com.example.meitu-1/lib/arm/libmtimage-jni.so: has text relocations
                                                       at java.lang.Runtime.loadLibrary(Runtime.java:372)
                                                       at java.lang.System.loadLibrary(System.java:1076)
                                                       at mt.mtxx.image.JNI.<init>(JNI.java:12)
                                                       at com.example.meitu.MainActivity.onCreate(MainActivity.java:21)
                                                       at android.app.Activity.performCreate(Activity.java:6307)
                                                       at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1113)
                                                       at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2603)
                                                       at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2720)
                                                       at android.app.ActivityThread.-wrap12(ActivityThread.java)
                                                       at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1567)
                                                       at android.os.Handler.dispatchMessage(Handler.java:111)
                                                       at android.os.Looper.loop(Looper.java:207)
                                                       at android.app.ActivityThread.main(ActivityThread.java:5917)
                                                       at java.lang.reflect.Method.invoke(Native Method)
                                                       at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789)
                                                       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:679)

出現:has text relocations的異常的時候一般都是編譯的版本對不上導致的,我剛開始的時候用的是android 7.0,改成了6.0還是一樣的錯,再改成5.2就好了,不能高於.so文件的編譯的版本

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章