dlopen failed: /data/app/xx/lib/arm/xx.so: has text relocations

刚报了一个错误

java.lang.UnsatisfiedLinkError: dlopen failed: /data/app/xx/lib/arm/libxx.so: has text relocations

看这意思是找不到相关的so文件。
但是5.1系统上就是可以正常运行的,6.0却不行。

同一份代码,同事的可以,但是我的就不行。后来比较了一下,我与同事的build.gradle文件有点不一样。关键不同的地方就是

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.1"
    defaultConfig {
        applicationId "xxx.xxx"
        minSdkVersion 16
        targetSdkVersion 24
        versionCode 15
        versionName "00.01.03"
    }
 }

我的targetSdkVersion是 24,他的是22,我降低了数值为22之后,程序正常运行。

经推测,原因应该是相关so文件不支持版本22以上。

你可能感兴趣的:(dlopen failed: /data/app/xx/lib/arm/xx.so: has text relocations)