25cf5369473b971f07e03ad7ac3edfd834e55b10.svn-base 888 B

12345678910111213141516171819202122232425
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion rootProject.ext.compileSdkVersion
  4. buildToolsVersion rootProject.ext.buildToolsVersion
  5. resourcePrefix "image_"
  6. defaultConfig {
  7. minSdkVersion 15
  8. targetSdkVersion rootProject.ext.targetSdkVersion
  9. // 混淆配置
  10. consumerProguardFiles 'proguard-glide.pro'
  11. }
  12. }
  13. dependencies {
  14. implementation "com.android.support:appcompat-v7:$rootProject.ext.supportLibraryVersion"
  15. implementation "com.android.support:design:$rootProject.ext.supportLibraryVersion"
  16. /*implementation 'com.github.bumptech.glide:glide:4.9.0'
  17. annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'*/
  18. //4.9.0的版本与获取相册的有冲突 改为4.7.1
  19. implementation 'com.github.bumptech.glide:glide:4.7.1'
  20. annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
  21. }