config.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. 引用步骤:
  3. (1) 在 project 下的 build.gradle 文件第一行添加 apply from : "config.gradle"
  4. (2) 在各个 module 中用 implemetions rootProject.ext.dependencies['xxx'] 和 annotationProcessor rootProject.ext..dependencies['xxx']
  5. **/
  6. ext {
  7. android = [
  8. stuApplicationId : 'com.cooleshow.student',
  9. teapplicationId : 'com.cooleshow.teacher',
  10. compileSdkVersion : 30,
  11. buildToolsVersion : "30.0.3",
  12. minSdkVersion : 21,
  13. targetSdkVersion : 29,
  14. versionCode : 357,
  15. studentVersionName : "3.5.7",
  16. teacherVersionName : "3.5.7",
  17. kotlin_version : '1.7.10',
  18. anko_version : '0.10.8',
  19. rx_lifecycle_version : '2.2.1',
  20. ok_http_version : '3.4.1',
  21. retrofit_version : '2.1.0',
  22. rx_kotlin_version : '2.0.0',
  23. rx_android_version : '1.2.1',
  24. glide_version : '4.13.0',
  25. dagger_version : '2.41',
  26. multi_state_view_version: '2.2.0',
  27. arouter_api_version : '1.5.2',
  28. ]
  29. }