Skip to content

Instantly share code, notes, and snippets.

@jamilxt
Created November 2, 2018 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamilxt/c3d0d69e00d522d4316bc16e1afc7eb9 to your computer and use it in GitHub Desktop.
Save jamilxt/c3d0d69e00d522d4316bc16e1afc7eb9 to your computer and use it in GitHub Desktop.
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support'
&& !details.requested.name.contains('multidex') ) {
details.useVersion "26.1.0"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment