build.gradle 739 B

123456789101112131415161718192021222324252627
  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.squareup.retrofit2:converter-gson:2.3.0'
  22. }