Last active
July 5, 2017 15:30
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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