21 lines
448 B
Groovy
21 lines
448 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdk 32
|
|
defaultConfig {
|
|
minSdk 21
|
|
targetSdk 32
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.9.0'
|
|
}
|