2
0

build.gradle 698 B

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 34
  4. defaultConfig {
  5. minSdkVersion 21
  6. targetSdkVersion 34
  7. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled false
  12. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  13. }
  14. }
  15. namespace 'com.lqr.imagepicker'
  16. lint {
  17. abortOnError false
  18. }
  19. }
  20. dependencies {
  21. implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
  22. implementation 'com.github.chrisbanes.photoview:library:1.2.4'
  23. implementation 'com.github.bumptech.glide:glide:4.15.1'
  24. }