2016-01-26 22:08:27 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2016-09-15 22:01:38 +02:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2016-01-26 22:08:27 +01:00
|
|
|
|
|
|
|
android {
|
2017-11-07 16:38:58 +01:00
|
|
|
compileSdkVersion 27
|
2018-01-18 16:43:19 +01:00
|
|
|
buildToolsVersion "27.0.3"
|
2016-01-26 22:08:27 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-02-25 22:13:00 +01:00
|
|
|
applicationId "com.simplemobiletools.calendar"
|
2016-01-26 22:08:27 +01:00
|
|
|
minSdkVersion 16
|
2017-11-07 16:38:58 +01:00
|
|
|
targetSdkVersion 27
|
2018-04-13 10:54:34 +02:00
|
|
|
versionCode 118
|
|
|
|
versionName "3.4.2"
|
2017-02-01 19:17:54 +01:00
|
|
|
multiDexEnabled true
|
2017-11-10 16:35:59 +01:00
|
|
|
setProperty("archivesBaseName", "calendar")
|
2016-01-26 22:08:27 +01:00
|
|
|
}
|
2016-04-25 22:46:01 +02:00
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release
|
|
|
|
}
|
|
|
|
|
2016-01-26 22:08:27 +01:00
|
|
|
buildTypes {
|
2018-01-30 22:00:38 +01:00
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
2016-01-26 22:08:27 +01:00
|
|
|
release {
|
2017-06-25 21:09:28 +02:00
|
|
|
minifyEnabled true
|
2016-01-26 22:08:27 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-04-25 22:46:01 +02:00
|
|
|
signingConfig signingConfigs.release
|
2016-01-26 22:08:27 +01:00
|
|
|
}
|
|
|
|
}
|
2016-09-15 22:01:38 +02:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2017-08-12 23:13:59 +02:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2016-01-26 22:08:27 +01:00
|
|
|
}
|
|
|
|
|
2017-08-12 22:46:57 +02:00
|
|
|
ext {
|
2017-11-07 16:38:58 +01:00
|
|
|
leakCanaryVersion = '1.5.4'
|
2017-08-12 22:46:57 +02:00
|
|
|
}
|
|
|
|
|
2016-01-26 22:08:27 +01:00
|
|
|
dependencies {
|
2018-05-10 13:59:16 +02:00
|
|
|
implementation 'com.simplemobiletools:commons:4.0.2'
|
2017-11-19 22:32:54 +01:00
|
|
|
implementation 'joda-time:joda-time:2.9.9'
|
|
|
|
implementation 'com.facebook.stetho:stetho:1.5.0'
|
2018-03-04 19:00:50 +01:00
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
2017-08-12 23:13:59 +02:00
|
|
|
|
2017-11-19 22:32:54 +01:00
|
|
|
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
|
|
|
|
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion"
|
2016-09-15 22:01:38 +02:00
|
|
|
}
|
|
|
|
|
2017-11-19 22:26:16 +01:00
|
|
|
Properties props = new Properties()
|
2016-04-25 22:46:01 +02:00
|
|
|
def propFile = new File('signing.properties')
|
|
|
|
if (propFile.canRead()) {
|
|
|
|
props.load(new FileInputStream(propFile))
|
|
|
|
|
2017-01-22 10:30:55 +01:00
|
|
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
|
2016-04-25 22:46:01 +02:00
|
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
2017-01-22 10:30:55 +01:00
|
|
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
2016-04-25 22:46:01 +02:00
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
2017-01-22 10:30:55 +01:00
|
|
|
android.signingConfigs.release.keyPassword = props['PASSWORD']
|
2016-04-25 22:46:01 +02:00
|
|
|
} else {
|
2017-11-06 17:42:47 +01:00
|
|
|
println 'signing.properties found but some entries are missing'
|
2016-04-25 22:46:01 +02:00
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
println 'signing.properties not found'
|
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|