RetroMusicPlayer/appthemehelper/build.gradle

30 lines
722 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 libs.androidx.appcompat
implementation libs.android.material
implementation libs.androidx.preference.ktx
}