build.gradle 513 B

123456789101112131415161718192021222324
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.2"
  5. defaultConfig {
  6. minSdkVersion 23
  7. targetSdkVersion 29
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled false
  12. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  13. }
  14. }
  15. }
  16. dependencies {
  17. implementation 'com.android.support:support-v4:28.0.0'
  18. //glide
  19. implementation 'com.github.bumptech.glide:glide:4.11.0'
  20. }