Simple-Calendar/app/build.gradle

68 lines
1.9 KiB
Groovy
Raw Normal View History

2016-01-26 22:08:27 +01:00
apply plugin: 'com.android.application'
2016-09-15 22:01:38 +02:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2016-01-26 22:08:27 +01:00
android {
2018-09-06 11:10:13 +02:00
compileSdkVersion 28
2018-10-05 21:59:08 +02:00
buildToolsVersion "28.0.3"
2016-01-26 22:08:27 +01:00
defaultConfig {
2018-11-09 17:12:02 +01:00
applicationId "com.simplemobiletools.calendar.pro"
minSdkVersion 21
2018-09-06 11:10:13 +02:00
targetSdkVersion 28
2018-11-09 11:29:46 +01:00
versionCode 134
versionName "5.1.2"
2017-02-01 19:17:54 +01:00
multiDexEnabled true
setProperty("archivesBaseName", "calendar")
2016-01-26 22:08:27 +01:00
}
2016-04-25 22:46:01 +02:00
signingConfigs {
release
}
2016-01-26 22:08:27 +01:00
buildTypes {
debug {
applicationIdSuffix ".debug"
}
2016-01-26 22:08:27 +01:00
release {
2017-06-25 21:09:28 +02:00
minifyEnabled true
2016-01-26 22:08:27 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2016-04-25 22:46:01 +02:00
signingConfig signingConfigs.release
2016-01-26 22:08:27 +01:00
}
}
2016-09-15 22:01:38 +02:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2016-01-26 22:08:27 +01:00
}
dependencies {
2018-11-08 23:20:28 +01:00
implementation 'com.simplemobiletools:commons:5.3.15'
2018-11-09 10:38:42 +01:00
implementation 'joda-time:joda-time:2.10.1'
implementation 'androidx.multidex:multidex:2.0.0'
2016-09-15 22:01:38 +02:00
}
2017-11-19 22:26:16 +01:00
Properties props = new Properties()
2016-04-25 22:46:01 +02:00
def propFile = new File('signing.properties')
if (propFile.canRead()) {
props.load(new FileInputStream(propFile))
2017-01-22 10:30:55 +01:00
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
2016-04-25 22:46:01 +02:00
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
2017-01-22 10:30:55 +01:00
android.signingConfigs.release.storePassword = props['PASSWORD']
2016-04-25 22:46:01 +02:00
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
2017-01-22 10:30:55 +01:00
android.signingConfigs.release.keyPassword = props['PASSWORD']
2016-04-25 22:46:01 +02:00
} else {
println 'signing.properties found but some entries are missing'
2016-04-25 22:46:01 +02:00
android.buildTypes.release.signingConfig = null
}
} else {
println 'signing.properties not found'
android.buildTypes.release.signingConfig = null
}