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'
|
2019-03-07 10:50:15 +01:00
|
|
|
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()
|
2019-12-19 21:51:48 +01:00
|
|
|
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 {
|
2021-03-10 19:12:06 +01:00
|
|
|
compileSdkVersion 30
|
2016-01-26 22:08:27 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-11-09 17:12:02 +01:00
|
|
|
applicationId "com.simplemobiletools.calendar.pro"
|
2018-10-16 13:03:29 +02:00
|
|
|
minSdkVersion 21
|
2021-03-10 19:12:06 +01:00
|
|
|
targetSdkVersion 30
|
2021-02-23 17:07:14 +01:00
|
|
|
versionCode 192
|
|
|
|
versionName "6.13.0"
|
2017-02-01 19:17:54 +01:00
|
|
|
multiDexEnabled true
|
2017-11-10 16:35:59 +01:00
|
|
|
setProperty("archivesBaseName", "calendar")
|
2019-08-15 23:06:59 +02:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2016-01-26 22:08:27 +01:00
|
|
|
}
|
2016-04-25 22:46:01 +02:00
|
|
|
|
|
|
|
signingConfigs {
|
2019-12-19 21:51:48 +01:00
|
|
|
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 {
|
2018-01-30 22:00:38 +01:00
|
|
|
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'
|
2019-12-22 22:56:05 +01:00
|
|
|
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'
|
|
|
|
}
|
2017-08-12 23:13:59 +02:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2019-03-07 10:50:15 +01:00
|
|
|
|
|
|
|
resourcePlaceholders {
|
|
|
|
files = ['xml/shortcuts.xml']
|
|
|
|
}
|
2016-01-26 22:08:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-03-10 16:47:38 +01:00
|
|
|
implementation 'com.simplemobiletools:commons:5.34.21'
|
|
|
|
implementation 'joda-time:joda-time:2.10.3'
|
2018-12-24 16:34:13 +01:00
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2020-12-07 21:49:19 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
2020-09-19 11:35:48 +02:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2020-10-25 18:21:29 +01:00
|
|
|
implementation "androidx.print:print:1.0.0"
|
2018-11-09 18:32:12 +01:00
|
|
|
|
2020-12-23 19:05:35 +01:00
|
|
|
kapt 'androidx.room:room-compiler:2.2.6'
|
|
|
|
implementation 'androidx.room:room-runtime:2.2.6'
|
|
|
|
annotationProcessor 'androidx.room:room-compiler:2.2.6'
|
2016-09-15 22:01:38 +02:00
|
|
|
}
|