build.gradle 735 B

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