Skip to content

Instantly share code, notes, and snippets.

@imskojs
Last active April 7, 2016 01:55
Show Gist options
  • Save imskojs/37099c6ae3c8c4e7a113 to your computer and use it in GitHub Desktop.
Save imskojs/37099c6ae3c8c4e7a113 to your computer and use it in GitHub Desktop.
Android_Development
// "MissingTranslation" Error
// in platforms/android/build.gradle find `android{...}` and add `lintOptions{abortOnError false}` like below;
android {
lintOptions {
abortOnError false
}
}
// or Alternatively
android {
lintOptions {
disable 'MissingTranslation'
}
}
// Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat error;
remove all android-support-v13.jar and android-support-v4.jar files
(in all the plugins: like phonegap-facebook-plugin, PushNotification, cordova-plugin-local-notifications)
remove all references that include them as dependencies, like in plugin.xml's
<source-file src="src/android/com/plugin/android-support-v13.jar" target-dir="libs/" /> and similar ones
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment