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'
|
2018-11-09 17:32:12 +00:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2019-03-07 09:50:15 +00:00
|
|
|
apply plugin: 'de.timfreiheit.resourceplaceholders'
|
2016-01-26 21:08:27 +00:00
|
|
|
|
2018-11-09 16:21:27 +00:00
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def keystoreProperties = new Properties()
|
2019-12-19 20:51:48 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
2018-11-09 16:21:27 +00:00
|
|
|
|
2016-01-26 21:08:27 +00:00
|
|
|
android {
|
2022-08-28 18:14:56 +00:00
|
|
|
compileSdkVersion 33
|
2016-01-26 21:08:27 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-11-09 16:12:02 +00:00
|
|
|
applicationId "com.simplemobiletools.calendar.pro"
|
2023-01-07 21:39:50 +00:00
|
|
|
minSdkVersion 23
|
2022-08-28 18:14:56 +00:00
|
|
|
targetSdkVersion 33
|
2023-01-12 09:59:31 +00:00
|
|
|
versionCode 228
|
|
|
|
versionName "6.21.2"
|
2017-02-01 18:17:54 +00:00
|
|
|
multiDexEnabled true
|
2017-11-10 15:35:59 +00:00
|
|
|
setProperty("archivesBaseName", "calendar")
|
2019-08-15 21:06:59 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2016-01-26 21:08:27 +00:00
|
|
|
}
|
2016-04-25 20:46:01 +00:00
|
|
|
|
|
|
|
signingConfigs {
|
2019-12-19 20:51:48 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
2018-11-09 16:21:27 +00:00
|
|
|
}
|
2016-04-25 20:46:01 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 21:08:27 +00:00
|
|
|
buildTypes {
|
2018-01-30 21:00:38 +00:00
|
|
|
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'
|
2019-12-22 21:56:05 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2016-01-26 21:08:27 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-15 20:01:38 +00:00
|
|
|
|
2022-01-02 16:20:53 +00:00
|
|
|
flavorDimensions "variants"
|
|
|
|
productFlavors {
|
2022-02-09 10:07:58 +00:00
|
|
|
core {}
|
2022-01-02 16:20:53 +00:00
|
|
|
fdroid {}
|
2022-04-02 20:15:29 +00:00
|
|
|
prepaid {}
|
2022-01-02 16:20:53 +00:00
|
|
|
}
|
|
|
|
|
2016-09-15 20:01:38 +00:00
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2017-08-12 21:13:59 +00:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2019-03-07 09:50:15 +00:00
|
|
|
|
|
|
|
resourcePlaceholders {
|
|
|
|
files = ['xml/shortcuts.xml']
|
|
|
|
}
|
2016-01-26 21:08:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-01-17 11:58:22 +00:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:b86e5fbc6a'
|
2018-12-24 15:34:13 +00:00
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2022-05-21 15:12:35 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
2020-09-19 09:35:48 +00:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2020-10-25 17:21:29 +00:00
|
|
|
implementation "androidx.print:print:1.0.0"
|
2018-11-09 17:32:12 +00:00
|
|
|
|
2022-08-28 18:14:56 +00: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 20:01:38 +00:00
|
|
|
}
|