Simple-Calendar/app/build.gradle

68 lines
1.9 KiB
Groovy
Raw Normal View History

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