Skip to content

Instantly share code, notes, and snippets.

@antonyalkmim
Created July 11, 2017 18:05
Show Gist options
  • Select an option

  • Save antonyalkmim/e1a4b98dd8f2cb3519c71c7ce942f693 to your computer and use it in GitHub Desktop.

Select an option

Save antonyalkmim/e1a4b98dd8f2cb3519c71c7ce942f693 to your computer and use it in GitHub Desktop.
cordova android compat error workaround
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '25.3.1'
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment