video.gradle 463 B

123456789101112131415161718
  1. ext {
  2. androidBuildToolsVersion = "29.0.0"
  3. androidMinSdkVersion = 17
  4. androidTargetSdkVersion = 29
  5. androidCompileSdkVersion = 29
  6. constraintLayoutVersion = '1.1.3'
  7. appcompatVersion = '1.2.0'
  8. /**主app-start*/
  9. AppDependencies = [
  10. constraintLayout : "androidx.constraintlayout:constraintlayout:${constraintLayoutVersion}",
  11. appcompat : "androidx.appcompat:appcompat:${appcompatVersion}",
  12. ]
  13. }