Simple-Flashlight/app/build.gradle

62 lines
1.7 KiB
Groovy
Raw Normal View History

2016-01-06 13:43:35 +01:00
apply plugin: 'com.android.application'
2017-11-05 21:55:08 +01:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2016-01-06 13:43:35 +01:00
android {
2017-11-29 23:24:00 +01:00
compileSdkVersion 27
buildToolsVersion "27.0.1"
2016-04-25 23:30:32 +02:00
2016-01-06 13:43:35 +01:00
defaultConfig {
2016-02-25 22:05:29 +01:00
applicationId "com.simplemobiletools.flashlight"
2016-01-06 13:43:35 +01:00
minSdkVersion 16
2017-11-29 23:24:00 +01:00
targetSdkVersion 27
2017-11-06 17:41:42 +01:00
versionCode 23
versionName "2.0.0"
2016-01-06 13:43:35 +01:00
}
2016-04-25 23:30:32 +02:00
signingConfigs {
release
}
2016-01-06 13:43:35 +01:00
buildTypes {
release {
2016-01-06 22:52:16 +01:00
minifyEnabled true
2016-01-06 13:43:35 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2016-04-25 23:30:32 +02:00
signingConfig signingConfigs.release
2016-01-06 13:43:35 +01:00
}
}
2017-11-05 21:55:08 +01:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2016-01-06 13:43:35 +01:00
}
dependencies {
2017-12-04 20:36:42 +01:00
implementation 'com.simplemobiletools:commons:3.1.2'
2017-11-29 23:24:00 +01:00
implementation 'com.squareup:otto:1.3.8'
2016-01-06 13:43:35 +01:00
}
2016-04-25 23:30:32 +02:00
2017-11-29 23:24:00 +01:00
Properties props = new Properties()
2016-04-25 23:30:32 +02:00
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')) {
2016-04-25 23:30:32 +02:00
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
android.signingConfigs.release.storePassword = props['PASSWORD']
2016-04-25 23:30:32 +02:00
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
android.signingConfigs.release.keyPassword = props['PASSWORD']
2016-04-25 23:30:32 +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
}