2018-02-28 00:02:08 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 27
|
|
|
|
buildToolsVersion "27.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.clock"
|
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 27
|
2018-03-14 20:56:40 +01:00
|
|
|
versionCode 3
|
|
|
|
versionName "3.1.1"
|
2018-02-28 00:02:08 +01:00
|
|
|
setProperty("archivesBaseName", "clock")
|
|
|
|
}
|
|
|
|
|
2018-02-28 10:38:05 +01:00
|
|
|
signingConfigs {
|
|
|
|
release
|
|
|
|
}
|
|
|
|
|
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'
|
2018-02-28 10:38:05 +01:00
|
|
|
signingConfig signingConfigs.release
|
2018-02-28 00:02:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-03-28 17:08:27 +02:00
|
|
|
implementation 'com.simplemobiletools:commons:3.17.5'
|
2018-03-03 23:51:58 +01:00
|
|
|
implementation 'com.facebook.stetho:stetho:1.5.0'
|
2018-03-01 21:39:39 +01:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
2018-03-09 10:13:35 +01:00
|
|
|
implementation 'com.shawnlin:number-picker:2.4.6'
|
2018-02-28 00:02:08 +01:00
|
|
|
}
|
2018-02-28 10:38:05 +01:00
|
|
|
|
|
|
|
Properties props = new Properties()
|
|
|
|
def propFile = new File('signing.properties')
|
|
|
|
if (propFile.canRead()) {
|
|
|
|
props.load(new FileInputStream(propFile))
|
|
|
|
|
|
|
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
|
|
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
|
|
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
|
|
|
android.signingConfigs.release.keyPassword = props['PASSWORD']
|
|
|
|
} else {
|
|
|
|
println 'signing.properties found but some entries are missing'
|
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
println 'signing.properties not found'
|
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|