Skip to content

Instantly share code, notes, and snippets.

@caiovncius
Last active May 10, 2018 15:56
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 caiovncius/8f639420823fd3e75a9ea6e039b11615 to your computer and use it in GitHub Desktop.
Save caiovncius/8f639420823fd3e75a9ea6e039b11615 to your computer and use it in GitHub Desktop.
Fix Gradle Android
configurations {
all*.exclude group: 'com.android.support', module: 'support-v13'
}
configurations.all {
resolutionStrategy {
force 'com.android.support:support-v4:27.1.0'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment