build.gradle 804 B

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion rootProject.ext.compileSdkVersion
  4. defaultConfig {
  5. minSdkVersion rootProject.ext.minSdkVersion
  6. targetSdkVersion rootProject.ext.targetSdkVersion
  7. versionCode rootProject.ext.versionCode
  8. versionName rootProject.ext.versionName
  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. implementation("com.android.support:appcompat-v7:${V7_APPCOMPAT_VERSION}")
  20. implementation 'com.github.bumptech.glide:glide:4.2.0'
  21. annotationProcessor 'com.github.bumptech.glide:compiler:4.2.0'
  22. }