Created
January 23, 2019 18:40
-
-
Save shishirthedev/ba3ae27ed2274d966a829d25f4f3bbfb to your computer and use it in GitHub Desktop.
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("26.0.1") | |
} | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment