30 lines
806 B
Groovy
30 lines
806 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
android {
|
|
compileSdk 33
|
|
namespace "code.name.monkey.appthemehelper"
|
|
|
|
defaultConfig {
|
|
minSdk 21
|
|
targetSdk 33
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lint {
|
|
abortOnError false
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.appcompat:appcompat:$appcompat_version"
|
|
implementation "com.google.android.material:material:$mdc_version"
|
|
implementation "androidx.preference:preference-ktx:$preference_version"
|
|
}
|