Simple-Contacts/app/build.gradle

69 lines
1.9 KiB
Groovy
Raw Normal View History

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
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-01-03 12:16:27 +01:00
versionCode 4
versionName "3.0.3"
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 {
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-01-03 12:14:38 +01:00
implementation 'com.simplemobiletools:commons:3.5.7'
implementation 'joda-time:joda-time:2.9.9'
2017-12-18 12:21:41 +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
}