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
One can be more specific by just adding
lintOptions {
disable MissingTranslation
}
No need to use a cordova plugin, use an after_platform_add
hook as described here, then put the following in a build-extras.gradle
file:
android {
lintOptions {
disable 'MissingTranslation'
disable 'ExtraTranslation'
}
}