build.gradle 632 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 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. //基类
  21. implementation project(':lib_base')
  22. }