build.gradle 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. compileSdk 31
  6. defaultConfig {
  7. minSdk 24
  8. targetSdk 31
  9. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  10. consumerProguardFiles "consumer-rules.pro"
  11. buildFeatures {
  12. viewBinding = true
  13. }
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25. }
  26. dependencies {
  27. api 'androidx.appcompat:appcompat:1.4.0'
  28. api 'com.google.android.material:material:1.4.0'
  29. api 'androidx.constraintlayout:constraintlayout:2.0.4'
  30. api "androidx.fragment:fragment:1.4.1"
  31. api 'com.guolindev.permissionx:permissionx:1.6.1'
  32. api 'com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.6'
  33. api 'com.blankj:utilcodex:1.31.0'
  34. api 'org.greenrobot:eventbus:3.3.1'
  35. api 'com.google.code.gson:gson:2.8.9'
  36. api 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
  37. api 'com.github.bumptech.glide:glide:4.12.0'
  38. annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
  39. api 'com.squareup.retrofit2:retrofit:2.9.0'
  40. api 'com.squareup.retrofit2:converter-gson:2.9.0'
  41. api 'com.squareup.okhttp3:logging-interceptor:3.5.0'
  42. api 'com.github.AlexLiuSheng:CheckVersionLib:2.4.1_androidx'
  43. api 'io.github.lucksiege:pictureselector:v2.7.3-rc10'
  44. api 'com.github.Justson.AgentWeb:agentweb-core:v4.1.9-androidx'
  45. api 'com.afollestad.material-dialogs:core:3.3.0'
  46. api 'com.afollestad.material-dialogs:bottomsheets:3.3.0'
  47. api 'com.contrarywind:Android-PickerView:4.1.9'
  48. testImplementation 'junit:junit:4.13.2'
  49. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  50. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  51. }