build.gradle 674 B

1234567891011121314151617181920212223242526272829
  1. plugins {
  2. id 'com.android.library'
  3. //id 'org.jetbrains.kotlin.android'
  4. //id 'kotlin-android-extensions'
  5. }
  6. android {
  7. compileSdkVersion 30
  8. buildToolsVersion "30.0.0"
  9. defaultConfig {
  10. minSdkVersion 19
  11. targetSdkVersion 25
  12. versionCode 1
  13. versionName "1.0"
  14. }
  15. }
  16. dependencies {
  17. implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
  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. //gson
  22. implementation 'com.google.code.gson:gson:2.8.5'
  23. }