美文网首页
android gradle 强制版本

android gradle 强制版本

作者: 赖益文 | 来源:发表于2021-07-27 09:31 被阅读0次

1.强制依赖。。。

configurations.all{

    resolutionStrategy{

        force'androidx.constraintlayout:constraintlayout:1.1.2'

    }

}

2.切断依赖传递

configurations.all {

  transitive = false

}

3.指定不编译

configurations {

  all*.exclude group: 'org.hamcrest', module: 'hamcrest-core'

}

4.打印依赖

./gradlew ${module_path}:dependencies

相关文章

网友评论

      本文标题:android gradle 强制版本

      本文链接:https://www.haomeiwen.com/subject/enwlmltx.html