build.gradle 754 B

1234567891011121314151617181920212223242526272829303132
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. defaultConfig {
  5. minSdkVersion 19
  6. targetSdkVersion 29
  7. versionCode 20210628
  8. versionName "5.1.3"
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. android {
  17. lintOptions {
  18. abortOnError false
  19. }
  20. }
  21. }
  22. dependencies {
  23. api fileTree(include: ['*.jar'], dir: 'libs')
  24. api project(':rong_im:kit')
  25. api "com.github.bumptech.glide:glide:$rootProject.ext.android.glide_version"
  26. annotationProcessor "com.github.bumptech.glide:compiler:$rootProject.ext.android.glide_version"
  27. }