android studio 打包报 MissingTranslation 的 3种解决方式

早上用Android studio打包生成android apk的时候遇到了编译问题,明明没有想要做英文翻译,但是AS生成apk的时候自己走了translate in english的路线。

几个string.xml文件报错 string value is not translated in "zh"(Chinese)[MissingTranslation]。

android studio 打包报 MissingTranslation 的 3种解决方式_第1张图片

通过查找解决方案,发现有三种方案可以解决:

1、 在string 里加attribute      translatable="false":

你好

2、直接设定 string.xml文件内的resources的attribute:

   xmlns:tools="http://schemas.android.com/tools"
   tools:ignore="MissingTranslation">
    hello_world
">你好

3、 File-->Setting-->Editor下的Inspections-->Android Lint 下的 Incomplete translation勾选去掉(不是很推荐,这是在google上找到的一种方法,试了一下不可以)




你可能感兴趣的:(Android,问题解决方案)