plugins { id 'com.android.library' //id 'org.jetbrains.kotlin.android' //id 'kotlin-android-extensions' } android { compileSdkVersion 32 defaultConfig { minSdkVersion 19 targetSdkVersion 22 versionCode 1 versionName "1.0" } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar']) implementation 'androidx.appcompat:appcompat:1.3.0-alpha02'//1.1.0 implementation 'com.google.android.material:material:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' //基类 implementation project(':lib_base') }