Created
July 11, 2017 18:05
-
-
Save antonyalkmim/e1a4b98dd8f2cb3519c71c7ce942f693 to your computer and use it in GitHub Desktop.
cordova android compat error workaround
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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