美文网首页
打包过程中因为编译检查问题报错

打包过程中因为编译检查问题报错

作者: 寒_沐 | 来源:发表于2017-06-08 12:24 被阅读0次

    打包过程中 出现Error: "xxx" is not translated in ... [MissingTranslation]

    原因室Lint检查到没有翻译某些字符串导致的

    解决办法

    对不需要翻译的字符串加上 translatable="false"

    string name="xxx" translatable="false"

    但如果字符串太多这样太麻烦了 所以可以app/build.gradle中

    android {

    lintOptions{

    disable'MissingTranslation'

    }

    }

    同时如果出现了is translated here but not found in default local错误

    原因是因为翻译中的string文件中有的字符串 默认的文件中没有这个字符

    可以直接把把翻译过的字符串复制到默认string文件中

    相关文章

      网友评论

          本文标题:打包过程中因为编译检查问题报错

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