Starting with Android Studio update to 2.0 stable version, debugging when there is no problem, in the packaging when the "App_name" is not the translated in En, zh_cn ...., the problem is that localization is incomplete meaning.
In the final analysis, this is the time to pack the problem, so the hint is also clear, is to change the configuration. Here's how to fix it:
Open the project directory under the Build.gradle file (this is the Gradle configuration file, Gradle is the compilation tool), and then follow the prompts a brain to add all the new parameters to Android inside.
[HTML]View PlainCopy
- <span style="FONT-SIZE:18PX;" >android {
- ...
- lintoptions{
- Checkreleasebuilds false
- Abortonerror false
- }
- }</span>
It's not a problem to pack. Checkreleasebuilds is in the packaging release version of the time to detect, here directly turned off, you can also open, so that the error will be displayed. The key is Abortonerror must be set to false, so that even if there is an error will not stop packaging.
Description: About the use of tools, and error handling, there are many online solutions, here only to do a pro-test feasible scheme, recorded in the blog, only as a summary, collation .....
Android Studio Package: "App_name" is not translated in en, zh_cn .... Solutions