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