android gradle 强制版本

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 强制版本)