2018-02-28 00:02:08 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
|
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 {
|
2020-02-14 19:09:03 +01:00
|
|
|
compileSdkVersion 29
|
|
|
|
buildToolsVersion "29.0.3"
|
2018-02-28 00:02:08 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.clock"
|
2019-01-24 21:47:36 +01:00
|
|
|
minSdkVersion 21
|
2020-02-14 19:09:03 +01:00
|
|
|
targetSdkVersion 29
|
2020-05-28 19:36:18 +02:00
|
|
|
versionCode 19
|
|
|
|
versionName "5.2.2"
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2020-03-04 08:42:19 +01:00
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
freeCompilerArgs = ["-XXLanguage:+NewInference"]
|
|
|
|
}
|
2018-02-28 00:02:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-06-19 16:42:52 +02:00
|
|
|
implementation 'com.simplemobiletools:commons:5.29.13'
|
2018-03-03 23:51:58 +01:00
|
|
|
implementation 'com.facebook.stetho:stetho:1.5.0'
|
2020-06-19 16:42:52 +02:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta7'
|
2018-03-09 10:13:35 +01:00
|
|
|
implementation 'com.shawnlin:number-picker:2.4.6'
|
2020-03-04 08:42:19 +01:00
|
|
|
implementation "androidx.preference:preference:1.1.0"
|
|
|
|
implementation "androidx.work:work-runtime-ktx:2.3.2"
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.2.0'
|
2020-03-08 21:42:23 +01:00
|
|
|
implementation 'org.greenrobot:eventbus:3.2.0'
|
2020-03-10 15:20:02 +01:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
2018-02-28 00:02:08 +01:00
|
|
|
}
|