Is there Gradle “dependencies ” task for buildScript dependencies?

前端 未结 3 1796
悲&欢浪女
悲&欢浪女 2020-12-15 04:47

One can run gradlew dependencies to learn about dependencies of module tasks. It there a way to find transitive dependencies of buildscript dependencies

3条回答
  •  一整个雨季
    2020-12-15 05:19

    You can use this command:

    gradle dependencyInsight --dependency gradle
    

    There is awesome tutorial by Udacity, Gradle for Android, but you can watch this video for more explanation.

提交回复
热议问题