Created
August 3, 2018 14:29
-
-
Save wbinarytree/45ad3799e643ce67dcc69135309e3bcc to your computer and use it in GitHub Desktop.
force support lib version
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 support_lib_version | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment