123456789101112131415161718 |
- ext {
- androidBuildToolsVersion = "29.0.0"
- androidMinSdkVersion = 17
- androidTargetSdkVersion = 29
- androidCompileSdkVersion = 29
- constraintLayoutVersion = '1.1.3'
- appcompatVersion = '1.2.0'
- /**主app-start*/
- AppDependencies = [
- constraintLayout : "androidx.constraintlayout:constraintlayout:${constraintLayoutVersion}",
- appcompat : "androidx.appcompat:appcompat:${appcompatVersion}",
- ]
- }
|