Last active
September 21, 2017 08:38
-
-
Save seriabov/dbcb0b52be2f34b9e8591490950751ef to your computer and use it in GitHub Desktop.
rewrite dependencies version for libraries (example for Support library)
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 -> | |
if (details.requested.group == 'com.android.support' && !details.requested.name.startsWith('multidex')) { | |
details.useVersion ext.supportVersion | |
} | |
} | |
} |
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
rewrite dependencies version for libraries (example for Support library) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment