gradle - How to find transitive dependencies in an Android project -
i have problem. have undesired dependency, not included explicitly in gradle file. cannot figure out how find dependency transitively includes one.
how can find out dependency come ?
i have tried
gradlew analyze
but fails compile project
thanks
dependencyinsight
task can you. example:
gradle -q lib:dependencyinsight --dependency groovy --configuration compile
will show why dependency containing groovy
in name included in compile
configuration of lib
project. see doc section details
Comments
Post a Comment