避免 Android Studio 编译 APK 出现 [Mis
2018-01-03 本文已影响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
}
...
}