build.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. apply plugin: 'com.android.library'
  2. apply from: 'library.gradle'
  3. android {
  4. compileSdkVersion 30
  5. buildToolsVersion '31.0.0-rc3'
  6. defaultConfig {
  7. minSdkVersion 14
  8. targetSdkVersion 30
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. dependencies {
  18. implementation fileTree(dir: 'libs', include: ['*.jar'])
  19. testImplementation 'junit:junit:4.12'
  20. implementation 'com.github.bumptech.glide:glide:4.9.0'
  21. implementation 'com.google.code.gson:gson:2.8.5'
  22. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  23. implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
  24. implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
  25. implementation 'io.reactivex.rxjava2:rxjava:2.1.13'
  26. api "org.reactivestreams:reactive-streams:1.0.3"
  27. implementation 'com.squareup.retrofit2:retrofit:2.6.2'
  28. implementation 'com.squareup.retrofit2:adapter-rxjava2:2.6.2'
  29. implementation 'com.squareup.retrofit2:converter-gson:2.6.2'
  30. implementation 'com.squareup.okhttp3:okhttp:3.12.0'
  31. implementation 'com.squareup.okhttp3:logging-interceptor:3.12.0'
  32. }