Simple-Camera/app/build.gradle

72 lines
2.0 KiB
Groovy
Raw Normal View History

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