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
|
2019-10-31 22:47:06 +01:00
|
|
|
versionCode 15
|
|
|
|
versionName "5.0.4"
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-02-14 19:09:03 +01:00
|
|
|
implementation 'com.simplemobiletools:commons:5.22.10'
|
2018-03-03 23:51:58 +01:00
|
|
|
implementation 'com.facebook.stetho:stetho:1.5.0'
|
2019-07-06 15:36:23 +02:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
|
2018-03-09 10:13:35 +01:00
|
|
|
implementation 'com.shawnlin:number-picker:2.4.6'
|
2018-02-28 00:02:08 +01:00
|
|
|
}
|