RetroMusicPlayer/appthemehelper/build.gradle
2024-10-20 01:44:02 +02:00

30 lines
720 B
Groovy

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdk 35
namespace "code.name.monkey.appthemehelper"
defaultConfig {
minSdk 21
targetSdk 35
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
lint {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
implementation libs.androidx.appcompat
implementation libs.android.material
implementation libs.androidx.preference.ktx
}