美文网首页
xxx.so text relocations 本地解决方案

xxx.so text relocations 本地解决方案

作者: EdwardWinner | 来源:发表于2018-07-31 15:20 被阅读204次

    以下是其他Android爱好者的测试结果,仅作为参考

    xxx.so text relocations 解决方案


    问题表现结果

    当targetSdkVersion>=23且使用debug签名时,在6.0+的Android设备上运行App会输出以下错误Log:

    E/linker: /data/app/packagename/lib/arm/libxxx.so: has text relocations
    W/System.err: java.lang.UnsatisfiedLinkError: dlopen failed: /data/app/packagename/lib/arm/libxxx.so: has text relocations

    按照上面文章中所述,添加两处代码,可以规避弹出的对话框

    • AndroidMainfest.xml
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme"
        android:debuggable="false">
    
    • 在build.gradle 中设置
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    
        debug {
            debuggable false
        }
    }
    

    但是本地经过测试发现,存在出入!可能与本地的测试环境有关,当作参考

    • 只修改AndroidMainfest.xml中Application的属性,测试无效!
    • build.gradle以及AndroidMainfest.xml都修改存在冲突,只保留build.gradle中的修改!
    • 但是由于本地机器为内网机,build apk出现错误。

    No cached version of com.android.tools.lint:lint-grade:26.1.2 available for offline mode.
    Disable Grade 'offline mode' and sync project.

    查询资料发现,需要在build.gradle文件中添加如下代码:

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        debug {
            minifyEnabled false
            debuggable false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    lintOptions {
        checkReleaseBuilds false
        abortOnError false
    }
    

    如果有更好更多的解决方案,欢迎补充!谢谢

    相关文章

      网友评论

          本文标题:xxx.so text relocations 本地解决方案

          本文链接:https://www.haomeiwen.com/subject/nklcvftx.html