Skip to content

Instantly share code, notes, and snippets.

@shishirthedev
Created January 23, 2019 18:40
Show Gist options
  • Save shishirthedev/ba3ae27ed2274d966a829d25f4f3bbfb to your computer and use it in GitHub Desktop.
Save shishirthedev/ba3ae27ed2274d966a829d25f4f3bbfb to your computer and use it in GitHub Desktop.
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