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-08-19 23:45:08 +02:00
|
|
|
compileSdkVersion 30
|
2018-02-28 00:02:08 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.clock"
|
2019-01-24 21:47:36 +01:00
|
|
|
minSdkVersion 21
|
2020-08-19 23:45:08 +02:00
|
|
|
targetSdkVersion 30
|
2021-04-19 16:11:56 +02:00
|
|
|
versionCode 23
|
|
|
|
versionName "5.5.1"
|
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 {
|
2021-05-22 15:46:14 +02:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:ac45c5e893'
|
2018-03-03 23:51:58 +01:00
|
|
|
implementation 'com.facebook.stetho:stetho:1.5.0'
|
2020-12-28 22:20:58 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
2018-03-09 10:13:35 +01:00
|
|
|
implementation 'com.shawnlin:number-picker:2.4.6'
|
2020-12-28 22:20:58 +01:00
|
|
|
implementation "androidx.preference:preference-ktx:1.1.1"
|
2021-04-19 09:53:14 +02:00
|
|
|
implementation "androidx.work:work-runtime-ktx:2.5.0"
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
|
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
|
|
|
}
|