build.gradle 789 B

12345678910111213141516171819202122232425262728293031
  1. plugins {
  2. id 'com.android.library'
  3. //id 'org.jetbrains.kotlin.android'
  4. //id 'kotlin-android-extensions'
  5. }
  6. android {
  7. compileSdkVersion 32
  8. defaultConfig {
  9. minSdkVersion 19
  10. targetSdkVersion 22
  11. versionCode 1
  12. versionName "1.0"
  13. }
  14. }
  15. dependencies {
  16. implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
  17. implementation 'androidx.appcompat:appcompat:1.3.0-alpha02'//1.1.0
  18. implementation 'com.google.android.material:material:1.1.0'
  19. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  20. //EventBus
  21. implementation 'org.greenrobot:eventbus:3.1.1'
  22. // Glide
  23. implementation 'com.github.bumptech.glide:glide:4.12.0'
  24. annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
  25. }