Skip to content

Instantly share code, notes, and snippets.

@vovkab
Last active June 6, 2018 23:50
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 vovkab/bf0bb57e947ab784dae54bfe47760d5d to your computer and use it in GitHub Desktop.
Save vovkab/bf0bb57e947ab784dae54bfe47760d5d to your computer and use it in GitHub Desktop.
gradlew :app:dependencyInsight --configuration testCompile --dependency kotlin-reflect
gradlew :tapp:dependencyInsight --configuration appDebugCompileClasspath --dependency okhttp
Resolve all dependencies. Force gradle to precache dependencies for all configurations:
```
allprojects {
task resolveAllDependencies {
doLast {
configurations.all { it.resolve() }
}
}
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment