2016-12-09 19:24:09 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2016-12-09 20:04:30 +01:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2016-12-09 19:24:09 +01:00
|
|
|
|
|
|
|
android {
|
2017-11-28 19:08:48 +01:00
|
|
|
compileSdkVersion 27
|
2016-12-09 23:15:08 +01:00
|
|
|
|
2016-12-09 19:24:09 +01:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.thankyou"
|
|
|
|
minSdkVersion 16
|
2017-11-28 19:08:48 +01:00
|
|
|
targetSdkVersion 27
|
2017-12-07 09:35:53 +01:00
|
|
|
versionCode 5
|
|
|
|
versionName "3.0.1"
|
2017-11-28 19:08:48 +01:00
|
|
|
setProperty("archivesBaseName", "thank-you")
|
2016-12-09 19:24:09 +01:00
|
|
|
}
|
2016-12-09 23:15:08 +01:00
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release
|
|
|
|
}
|
|
|
|
|
2016-12-09 19:24:09 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2016-12-09 23:15:08 +01:00
|
|
|
minifyEnabled true
|
2016-12-09 19:24:09 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-12-09 23:15:08 +01:00
|
|
|
signingConfig signingConfigs.release
|
2016-12-09 19:24:09 +01:00
|
|
|
}
|
|
|
|
}
|
2016-12-09 20:04:30 +01:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2017-10-26 19:00:36 +02:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2016-12-09 19:24:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-12-07 09:29:06 +01:00
|
|
|
implementation 'com.simplemobiletools:commons:3.2.3'
|
2016-12-09 20:04:30 +01:00
|
|
|
}
|
|
|
|
|
2017-11-28 19:08:48 +01:00
|
|
|
Properties props = new Properties()
|
2016-12-09 23:15:08 +01:00
|
|
|
def propFile = new File('signing.properties')
|
|
|
|
if (propFile.canRead()) {
|
|
|
|
props.load(new FileInputStream(propFile))
|
|
|
|
|
2017-10-26 17:31:02 +02:00
|
|
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
|
2016-12-09 23:15:08 +01:00
|
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
2017-10-26 17:31:02 +02:00
|
|
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
2016-12-09 23:15:08 +01:00
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
2017-10-26 17:31:02 +02:00
|
|
|
android.signingConfigs.release.keyPassword = props['PASSWORD']
|
2016-12-09 23:15:08 +01:00
|
|
|
} 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
|
|
|
|
}
|