原作者链接: 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
}
...
}
网友评论