Simple-Calendar/app/build.gradle

76 lines
2.1 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'
2018-11-09 18:32:12 +01:00
apply plugin: 'kotlin-kapt'
apply plugin: 'de.timfreiheit.resourceplaceholders'
2016-01-26 22:08:27 +01:00
2018-11-09 17:21:27 +01:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
2018-11-09 17:21:27 +01:00
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
2019-12-18 21:30:29 +01:00
versionCode 169
versionName "6.8.2"
2017-02-01 19:17:54 +01:00
multiDexEnabled true
setProperty("archivesBaseName", "calendar")
vectorDrawables.useSupportLibrary = true
2016-01-26 22:08:27 +01:00
}
2016-04-25 22:46:01 +02:00
signingConfigs {
if (keystorePropertiesFile.exists()) {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
2018-11-09 17:21:27 +01:00
}
2016-04-25 22:46:01 +02:00
}
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'
if (keystorePropertiesFile.exists()) {
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
}
resourcePlaceholders {
files = ['xml/shortcuts.xml']
}
2016-01-26 22:08:27 +01:00
}
dependencies {
2019-12-29 17:58:17 +01:00
implementation 'com.simplemobiletools:commons:5.21.9'
2018-11-09 10:38:42 +01:00
implementation 'joda-time:joda-time:2.10.1'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
2018-11-09 18:32:12 +01:00
2019-12-02 18:36:54 +01:00
kapt 'androidx.room:room-compiler:2.2.2'
implementation 'androidx.room:room-runtime:2.2.2'
annotationProcessor 'androidx.room:room-compiler:2.2.2'
2016-09-15 22:01:38 +02:00
}