Skip to content

Instantly share code, notes, and snippets.

@wbinarytree
Created August 3, 2018 14:29
Show Gist options
  • Save wbinarytree/45ad3799e643ce67dcc69135309e3bcc to your computer and use it in GitHub Desktop.
Save wbinarytree/45ad3799e643ce67dcc69135309e3bcc to your computer and use it in GitHub Desktop.
force support lib version
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