2017-12-10 10:16:59 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 27
|
2018-01-22 11:11:11 +01:00
|
|
|
buildToolsVersion "27.0.3"
|
2017-12-10 10:16:59 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.contacts"
|
2017-12-13 18:08:11 +01:00
|
|
|
minSdkVersion 16
|
2017-12-10 10:16:59 +01:00
|
|
|
targetSdkVersion 27
|
2018-08-05 15:41:26 +02:00
|
|
|
versionCode 28
|
|
|
|
versionName "4.2.1"
|
2017-12-10 10:38:17 +01:00
|
|
|
setProperty("archivesBaseName", "contacts")
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|
|
|
|
|
2017-12-31 09:36:39 +01:00
|
|
|
signingConfigs {
|
|
|
|
release
|
|
|
|
}
|
|
|
|
|
2017-12-10 10:16:59 +01:00
|
|
|
buildTypes {
|
2018-01-30 21:58:22 +01:00
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
2017-12-10 10:16:59 +01:00
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2017-12-31 09:36:39 +01:00
|
|
|
signingConfig signingConfigs.release
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|
|
|
|
}
|
2017-12-10 10:38:17 +01:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|
|
|
|
|
2017-12-18 12:21:41 +01:00
|
|
|
ext {
|
|
|
|
leakCanaryVersion = '1.5.4'
|
|
|
|
}
|
|
|
|
|
2017-12-10 10:16:59 +01:00
|
|
|
dependencies {
|
2018-08-12 20:18:05 +02:00
|
|
|
implementation 'com.simplemobiletools:commons:4.6.6'
|
2017-12-27 22:04:40 +01:00
|
|
|
implementation 'joda-time:joda-time:2.9.9'
|
2018-02-11 18:38:30 +01:00
|
|
|
implementation 'com.facebook.stetho:stetho:1.5.0'
|
2018-08-04 16:02:17 +02:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
|
2017-12-18 12:21:41 +01:00
|
|
|
|
2018-01-14 19:58:25 +01:00
|
|
|
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
|
|
|
|
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion"
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|
2017-12-31 09:36:39 +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
|
|
|
|
}
|