config.gradle 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ext {
  2. tag = [
  3. userAndroidXVolley: false,
  4. minify : true
  5. ]
  6. android = [
  7. compileSdkVersion: 30,
  8. buildToolsVersion: '30.0.3',
  9. minSdkVersion : 16,
  10. targetSdkVersion : 30,
  11. versionCode : 1,
  12. versionName : '1.0'
  13. ]
  14. ktx = [
  15. stdlib : "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version",
  16. coroutines: 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0',
  17. core : 'androidx.core:core-ktx:1.6.0'
  18. ]
  19. ui = [
  20. appcompat : 'androidx.appcompat:appcompat:1.3.1',
  21. material : 'com.google.android.material:material:1.4.0',
  22. constraintlayout : 'androidx.constraintlayout:constraintlayout:2.1.0',
  23. swiperefreshlayout: 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0',
  24. recyclerview : 'androidx.recyclerview:recyclerview:1.2.1',
  25. cardview : 'androidx.cardview:cardview:1.0.0'
  26. ]
  27. other = [
  28. cronet: 'org.chromium.net:cronet-embedded:76.3809.111'
  29. ]
  30. ktxLibs = ktx.values()
  31. otherLibs = other.values()
  32. }