build.gradle 644 B

123456789101112131415161718192021222324
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.3"
  5. defaultConfig {
  6. minSdkVersion 21
  7. targetSdkVersion 29
  8. }
  9. }
  10. dependencies {
  11. implementation 'androidx.core:core:1.2.0'
  12. implementation 'androidx.recyclerview:recyclerview:1.2.0'
  13. implementation 'androidx.fragment:fragment:1.2.4'
  14. implementation 'com.squareup.okhttp3:okhttp:3.14.9'
  15. implementation 'com.squareup.okhttp3:logging-interceptor:3.14.4'
  16. implementation 'com.github.bumptech.glide:glide:4.12.0'
  17. // implementation (externalGlide){
  18. // exclude group: "com.android.support"
  19. // }
  20. }