Skip to content

Instantly share code, notes, and snippets.

@docherty
Last active August 28, 2015 09:03
Show Gist options
  • Save docherty/885d5dae4b2b098909ab to your computer and use it in GitHub Desktop.
Save docherty/885d5dae4b2b098909ab to your computer and use it in GitHub Desktop.
Fix for Cordova android release build translation errors
// JMD addition to stop release build errors caused by missing translations when running this command:
// $ ionic build --release android or $ cordova build --release android
android {
lintOptions {
disable 'MissingTranslation'
disable 'ExtraTranslation'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment