Simple-Draw/app/build.gradle

72 lines
2.0 KiB
Groovy
Raw Normal View History

2016-02-14 22:04:02 +01:00
apply plugin: 'com.android.application'
2017-04-08 00:21:37 +02:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2016-02-14 22:04:02 +01:00
android {
2017-11-07 19:01:11 +01:00
compileSdkVersion 27
2018-01-22 11:13:56 +01:00
buildToolsVersion "27.0.3"
2016-02-14 22:04:02 +01:00
defaultConfig {
2016-02-25 22:00:45 +01:00
applicationId "com.simplemobiletools.draw"
2016-02-14 22:04:02 +01:00
minSdkVersion 16
2017-11-07 19:01:11 +01:00
targetSdkVersion 27
2018-07-12 21:55:33 +02:00
versionCode 35
versionName "4.1.0"
2017-11-20 16:49:32 +01:00
setProperty("archivesBaseName", "draw")
2016-02-14 22:04:02 +01:00
}
2016-04-25 23:38:50 +02:00
signingConfigs {
release
}
2016-02-14 22:04:02 +01:00
buildTypes {
debug {
applicationIdSuffix ".debug"
}
2016-02-14 22:04:02 +01:00
release {
2016-04-25 23:38:50 +02:00
minifyEnabled true
2016-02-14 22:04:02 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2016-04-25 23:38:50 +02:00
signingConfig signingConfigs.release
2016-02-14 22:04:02 +01:00
}
}
2017-04-08 00:21:37 +02:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
2017-08-29 22:19:30 +02:00
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2016-02-14 22:04:02 +01:00
}
2017-11-20 17:00:24 +01:00
ext {
leakCanaryVersion = '1.5.4'
}
2016-02-14 22:04:02 +01:00
dependencies {
2018-07-12 21:48:33 +02:00
implementation 'com.simplemobiletools:commons:4.4.13'
2017-11-20 17:00:24 +01:00
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion"
2017-04-08 00:21:37 +02:00
}
2017-11-20 16:49:32 +01:00
Properties props = new Properties()
2016-04-25 23:38:50 +02:00
def propFile = new File('signing.properties')
if (propFile.canRead()) {
props.load(new FileInputStream(propFile))
2017-03-14 18:46:43 +01:00
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
2016-04-25 23:38:50 +02:00
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
2017-03-14 18:46:43 +01:00
android.signingConfigs.release.storePassword = props['PASSWORD']
2016-04-25 23:38:50 +02:00
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
2017-03-14 18:46:43 +01:00
android.signingConfigs.release.keyPassword = props['PASSWORD']
2016-04-25 23:38:50 +02: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
}