Simple-Draw/app/build.gradle

73 lines
2.1 KiB
Groovy
Raw Normal View History

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