2016-01-10 12:26:04 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2016-11-03 21:46:37 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-05-18 10:12:55 +00:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2016-01-10 12:26:04 +00:00
|
|
|
|
2019-03-10 21:11:41 +00:00
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def keystoreProperties = new Properties()
|
2019-12-19 20:58:21 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
2019-03-10 21:11:41 +00:00
|
|
|
|
2016-01-10 12:26:04 +00:00
|
|
|
android {
|
2021-10-02 08:10:04 +00:00
|
|
|
compileSdkVersion 30
|
2016-01-10 12:26:04 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-02-25 20:58:06 +00:00
|
|
|
applicationId "com.simplemobiletools.musicplayer"
|
2018-10-12 18:38:06 +00:00
|
|
|
minSdkVersion 21
|
2021-10-02 08:10:04 +00:00
|
|
|
targetSdkVersion 30
|
2021-12-15 16:15:07 +00:00
|
|
|
versionCode 91
|
|
|
|
versionName "5.8.2"
|
2017-11-29 23:01:54 +00:00
|
|
|
setProperty("archivesBaseName", "music-player")
|
2019-08-15 21:13:08 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2016-01-10 12:26:04 +00:00
|
|
|
}
|
2016-04-25 21:08:24 +00:00
|
|
|
|
|
|
|
signingConfigs {
|
2019-12-19 20:58:21 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
2019-03-10 21:11:41 +00:00
|
|
|
}
|
2016-04-25 21:08:24 +00:00
|
|
|
}
|
|
|
|
|
2016-01-10 12:26:04 +00:00
|
|
|
buildTypes {
|
2018-01-30 21:02:21 +00:00
|
|
|
debug {
|
2018-05-21 18:49:48 +00:00
|
|
|
applicationIdSuffix ".debug"
|
2018-01-30 21:02:21 +00:00
|
|
|
}
|
2016-01-10 12:26:04 +00:00
|
|
|
release {
|
2016-04-25 21:08:24 +00:00
|
|
|
minifyEnabled true
|
2016-01-10 12:26:04 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2019-12-22 21:58:36 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2016-01-10 12:26:04 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-03 21:46:37 +00:00
|
|
|
|
2022-01-03 15:03:40 +00:00
|
|
|
flavorDimensions "variants"
|
|
|
|
productFlavors {
|
|
|
|
basic {}
|
|
|
|
fdroid {}
|
|
|
|
}
|
|
|
|
|
2016-11-03 21:46:37 +00:00
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2017-09-20 20:16:36 +00:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2021-05-11 08:21:58 +00:00
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2016-01-10 12:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-01-02 16:58:33 +00:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:14033f9b50'
|
2020-04-18 18:44:28 +00:00
|
|
|
implementation 'org.greenrobot:eventbus:3.2.0'
|
2021-12-15 16:09:49 +00:00
|
|
|
implementation 'androidx.media:media:1.4.3'
|
2020-09-19 13:26:02 +00:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2021-12-15 14:26:19 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
|
2021-08-29 09:00:30 +00:00
|
|
|
implementation 'com.google.android.material:material:1.4.0'
|
2021-03-01 14:14:45 +00:00
|
|
|
implementation 'com.airbnb.android:lottie:3.6.1'
|
2017-11-29 23:07:30 +00:00
|
|
|
|
2021-11-10 21:16:43 +00:00
|
|
|
// higher versions of jaudiotagger not compatible with <= API 25 devices
|
|
|
|
// https://bitbucket.org/ijabz/jaudiotagger/issues/149/some-nio-classes-are-unavailable-while
|
|
|
|
implementation "net.jthink:jaudiotagger:2.2.5"
|
2021-05-09 20:29:48 +00:00
|
|
|
kapt "androidx.room:room-compiler:2.3.0"
|
|
|
|
implementation "androidx.room:room-runtime:2.3.0"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:2.3.0"
|
2016-01-10 12:26:04 +00:00
|
|
|
}
|