Skip to content

Instantly share code, notes, and snippets.

@letroll
Last active July 5, 2017 15:30
Show Gist options
  • Save letroll/54ecddfc7752c90afc148235f87d90e7 to your computer and use it in GitHub Desktop.
Save letroll/54ecddfc7752c90afc148235f87d90e7 to your computer and use it in GitHub Desktop.
[get android project dependencies] lister les dépendances gradle de l'application #android #gradle
https://blog.mindorks.com/avoiding-conflicts-in-android-gradle-dependencies-28e4200ca235
gradle -q dependencies your-app-project:dependencies
gradlew :app:dependencies
gradlew :app:dependencie
gradlew :app:androidDependencies
configurations.all {
resolutionStrategy {
force "com.squareup.okhttp3:okhttp:${okHttpVersion}"
force "com.android.support:support-annotations:$supportAnnotationVersion"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment