Created
July 2, 2018 12:38
-
-
Save shikto1/f923cd504c16f1d148cc718017e237c8 to your computer and use it in GitHub Desktop.
This file contains 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("26.0.1") | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment