RetroMusicPlayer/appthemehelper/build.gradle

32 lines
836 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 {
compileSdk 32
2018-07-27 18:37:33 +05:30
2021-12-12 16:53:58 +05:30
defaultConfig {
minSdk 21
targetSdk 32
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 {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2018-07-27 18:37:33 +05:30
}
dependencies {
2022-01-13 17:45:41 +05:30
implementation "androidx.appcompat:appcompat:$appcompat_version"
2021-12-18 11:58:25 +05:30
implementation "com.google.android.material:material:$mdc_version"
implementation "androidx.preference:preference-ktx:$preference_version"
2019-09-01 19:02:36 +05:30
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
2018-07-27 18:37:33 +05:30
}