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 {
|
2022-08-28 20:14:56 +02:00
|
|
|
compileSdkVersion 33
|
2016-01-26 22:08:27 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-11-09 17:12:02 +01:00
|
|
|
applicationId "com.simplemobiletools.calendar.pro"
|
2023-01-07 22:39:50 +01:00
|
|
|
minSdkVersion 23
|
2022-08-28 20:14:56 +02:00
|
|
|
targetSdkVersion 33
|
2022-11-24 23:25:29 +01:00
|
|
|
versionCode 225
|
|
|
|
versionName "6.20.3"
|
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
|
|
|
|
2022-01-02 17:20:53 +01:00
|
|
|
flavorDimensions "variants"
|
|
|
|
productFlavors {
|
2022-02-09 11:07:58 +01:00
|
|
|
core {}
|
2022-01-02 17:20:53 +01:00
|
|
|
fdroid {}
|
2022-04-02 22:15:29 +02:00
|
|
|
prepaid {}
|
2022-01-02 17:20:53 +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 {
|
2023-01-08 18:38:40 +01:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:a95c7109bd'
|
2018-12-24 16:34:13 +01:00
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2022-05-21 17:12:35 +02:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.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
|
|
|
|
2022-08-28 20:14:56 +02:00
|
|
|
kapt 'androidx.room:room-compiler:2.4.3'
|
|
|
|
implementation 'androidx.room:room-runtime:2.4.3'
|
|
|
|
annotationProcessor 'androidx.room:room-compiler:2.4.3'
|
2016-09-15 22:01:38 +02:00
|
|
|
}
|