RetroMusicPlayer/appthemehelper/build.gradle

31 lines
720 B
Groovy
Raw Normal View History

2018-07-27 18:37:33 +05:30
apply plugin: 'com.android.library'
2018-12-05 21:05:22 +05:30
apply plugin: 'kotlin-android'
2018-07-27 18:37:33 +05:30
android {
2024-10-11 22:58:23 +02:00
compileSdk 34
2022-07-22 15:05:42 +08:00
namespace "code.name.monkey.appthemehelper"
2018-07-27 18:37:33 +05:30
2021-12-12 16:53:58 +05:30
defaultConfig {
minSdk 21
2024-10-11 22:58:23 +02:00
targetSdk 34
2018-07-27 18:37:33 +05:30
}
buildTypes {
release {
minifyEnabled true
2021-12-20 16:03:02 +05:30
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2018-07-27 18:37:33 +05:30
}
}
2022-01-27 13:19:39 +05:30
lint {
2021-12-26 20:11:18 +05:30
abortOnError false
}
2018-12-05 21:05:22 +05:30
compileOptions {
2024-10-11 22:58:23 +02:00
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
2018-12-05 21:05:22 +05:30
}
2018-07-27 18:37:33 +05:30
}
dependencies {
implementation libs.androidx.appcompat
implementation libs.android.material
implementation libs.androidx.preference.ktx
2018-07-27 18:37:33 +05:30
}