美文网首页
避免 Android Studio 编译 APK 出现 [Mis

避免 Android Studio 编译 APK 出现 [Mis

作者: 小时候很能吃 | 来源:发表于2018-01-03 12:29 被阅读0次

原作者链接: http://blog.csdn.net/KjunChen/article/details/50043487

今天(2015/11/25)在Android编译时发现这个错误,见下图 

方法有以下幾種:

1.對不需翻譯的字串加上 translatable="false" 

"XXX"

2.在 strings.xml 的 resources 加上以下屬性 

    xmlns:tools="http://schemas.android.com/tools"

    tools:ignore="MissingTranslation" >

3.在 app/build.gradle 中加上以下設定 

android {

    ...

    lintOptions {

        disable 'MissingTranslation'

    }

    ...

}

或 

android {

    ...

    lintOptions {

        checkReleaseBuilds false

        abortOnError false

    }

    ...

}

相关文章

网友评论

      本文标题:避免 Android Studio 编译 APK 出现 [Mis

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