123456789101112131415161718 |
- apply plugin: 'com.android.library'
-
- android {
- compileSdkVersion rootProject.ext.compileSdkVersion
- buildToolsVersion rootProject.ext.buildToolsVersion
-
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion rootProject.ext.targetSdkVersion
- // 混淆配置
- consumerProguardFiles 'proguard-base.pro'
- }
- }
-
- dependencies {
- implementation 'androidx.appcompat:appcompat:1.1.0-alpha04'
- implementation 'com.google.android.material:material:1.1.0-alpha06'
- }
|