1apply plugin: 'com.android.library' 2 3android { 4 compileSdkVersion 28 5 defaultConfig { 6 minSdkVersion 16 7 targetSdkVersion 28 8 versionCode 1 9 versionName "1.0" 10 } 11 buildTypes { 12 release { 13 minifyEnabled false 14 proguardFiles getDefaultProguardFile('proguard-android.txt') 15 } 16 } 17} 18 19dependencies { 20 implementation 'androidx.appcompat:appcompat:1.0.0-rc02' 21} 22