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