I\'m trying to publish my Android app by following the instructions here:
http://ionicframework.com/docs/guide/publishing.html
However, when I run cordova bu
If your build failed because of MissingTranslation issues, and if the string should not be translated, you can add the attribute translatable="false" on that element in /platforms/android/app/src/main/res/values/strings.xml file.
So, if the strings in the strings.xml file is like this:
Your App Name
@string/app_name
@string/launcher_name
Edit them to look like this:
Your App Name
@string/app_name
@string/launcher_name
This solution worked for me.