Error:(xx) Error: "xxxxxxx" is not translated in "en" (English)[MissingTranslation]

来源:互联网 发布:南风知我意2 番外七微 编辑:程序博客网 时间:2024/05/17 22:42

现象:

Android导出APK包时出现,编译调试时不会出现。在打apk真实包的时候,会出现以下问题。


错误信息:

Error:(16) Error: "baidutieba_client_inavailable" is not translated in "en" (English) [MissingTranslation]

Error:(63) Error: "baidutieba" is not translated in "en" (English) [MissingTranslation]

Error:(67) Error: "share_to_baidutieba" is not translated in "en" (English) [MissingTranslation]

错误截图:



解决办法:

resources 标签内增加xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation"两个属性即可

[html] view plain copy
  1. <?xml version="1.0" encoding="utf-8" ?>  
  2. <resources xmlns:tools="http://schemas.android.com/tools"  
  3.     tools:ignore="MissingTranslation">  
  4. </resources>  

1 0
原创粉丝点击