您的位置:首页 > 其它

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

2017-08-20 15:47 726 查看
现象:

Android导出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

<?xml version="1.0" encoding="utf-8" ?>  

<resources xmlns:tools="http://schemas.android.com/tools"  

    tools:ignore="MissingTranslation">  

</resources>  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  打包异常
相关文章推荐