2018-02-28 00:02:08 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2021-08-31 22:18:45 +02:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2018-02-28 00:02:08 +01:00
|
|
|
|
2019-01-24 22:04:09 +01:00
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def keystoreProperties = new Properties()
|
2019-12-19 22:01:07 +01:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
2019-01-24 22:04:09 +01:00
|
|
|
|
2018-02-28 00:02:08 +01:00
|
|
|
android {
|
2022-08-31 19:11:09 +02:00
|
|
|
compileSdkVersion 33
|
2018-02-28 00:02:08 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.clock"
|
2022-08-31 18:55:54 +02:00
|
|
|
minSdkVersion 23
|
2022-08-31 19:11:09 +02:00
|
|
|
targetSdkVersion 33
|
2022-12-26 10:21:27 +01:00
|
|
|
versionCode 36
|
|
|
|
versionName "5.10.0"
|
2018-02-28 00:02:08 +01:00
|
|
|
setProperty("archivesBaseName", "clock")
|
2019-08-07 21:03:52 +02:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2018-02-28 00:02:08 +01:00
|
|
|
}
|
|
|
|
|
2018-02-28 10:38:05 +01:00
|
|
|
signingConfigs {
|
2019-12-19 22:01:07 +01:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
2019-01-24 22:04:09 +01:00
|
|
|
}
|
2018-02-28 10:38:05 +01:00
|
|
|
}
|
|
|
|
|
2018-02-28 00:02:08 +01:00
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
|
|
|
release {
|
2018-02-28 10:38:05 +01:00
|
|
|
minifyEnabled true
|
2018-02-28 00:02:08 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2019-12-22 22:56:36 +01:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2018-02-28 00:02:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-20 21:25:18 +02:00
|
|
|
flavorDimensions "variants"
|
|
|
|
productFlavors {
|
|
|
|
core {}
|
|
|
|
fdroid {}
|
2022-07-01 10:38:58 +02:00
|
|
|
prepaid {}
|
2022-04-20 21:25:18 +02:00
|
|
|
}
|
|
|
|
|
2018-02-28 00:02:08 +01:00
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-03-25 12:00:42 +01:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:9f0c466018'
|
2022-06-24 20:17:23 +02:00
|
|
|
implementation 'com.facebook.stetho:stetho:1.5.1'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
2018-03-09 10:13:35 +01:00
|
|
|
implementation 'com.shawnlin:number-picker:2.4.6'
|
2022-04-20 20:05:21 +02:00
|
|
|
implementation "androidx.preference:preference-ktx:1.2.0"
|
|
|
|
implementation "androidx.work:work-runtime-ktx:2.7.1"
|
2021-09-15 12:13:54 +02:00
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0'
|
2022-04-20 20:05:21 +02:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
|
2022-08-31 19:11:09 +02:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
|
2022-04-20 20:05:21 +02:00
|
|
|
implementation 'org.greenrobot:eventbus:3.3.1'
|
2020-03-10 15:20:02 +01:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
2022-06-27 09:56:54 +02:00
|
|
|
implementation 'me.grantland:autofittextview:0.2.1'
|
2022-04-20 20:05:21 +02:00
|
|
|
|
2023-03-25 12:03:38 +01:00
|
|
|
implementation 'androidx.room:room-runtime:2.5.0'
|
|
|
|
kapt 'androidx.room:room-compiler:2.5.0'
|
2018-02-28 00:02:08 +01:00
|
|
|
}
|