mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-17 15:45:21 +01:00
30 lines
720 B
Groovy
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
|
|
}
|