env.gradle 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ext {
  2. isRelease = true
  3. userLibs = [
  4. appcompat : 'androidx.appcompat:appcompat:1.3.0',
  5. material : 'com.google.android.material:material:1.4.0',
  6. constraintlayout : 'androidx.constraintlayout:constraintlayout:2.0.4',
  7. //数据存储库
  8. mmkv : 'com.tencent:mmkv:1.2.11',
  9. //json解析库
  10. gson : 'com.google.code.gson:gson:2.8.9',
  11. recyclerview : 'androidx.recyclerview:recyclerview:1.1.0',
  12. //网络请求库
  13. okhttp3 : 'com.zhousf.lib:okhttp3:2.9.9',
  14. //图片加载库
  15. glide : 'com.github.bumptech.glide:glide:4.12.0',
  16. glide_compiler : 'com.github.bumptech.glide:compiler:4.12.0',
  17. glide_transformations: 'jp.wasabeef:glide-transformations:4.3.0',
  18. //解除Android P 反射机制
  19. freereflection : 'com.github.tiann:FreeReflection:3.1.0',
  20. //logger库
  21. orhanbutlogger : 'com.orhanobut:logger:2.1.1',
  22. //微信sdk
  23. wechatsdk : 'com.tencent.mm.opensdk:wechat-sdk-android:+',
  24. //支付宝sdk
  25. alipaysdk : 'com.alipay.sdk:alipaysdk-android:+@aar',
  26. LongImage : 'com.davemorrissey.labs:subsampling-scale-image-view:3.5.0',
  27. Toaster : 'com.github.getActivity:Toaster:12.3'
  28. ]
  29. testLibs = [
  30. junit : 'junit:junit:4.13.2',
  31. junitAndroid: 'androidx.test.ext:junit:1.1.3',
  32. espresso : 'androidx.test.espresso:espresso-core:3.4.0'
  33. ]
  34. }