Simple-Calendar/app/build.gradle

83 lines
2.3 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'
2018-11-09 17:32:12 +00:00
apply plugin: 'kotlin-kapt'
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()
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 {
compileSdkVersion 33
2016-01-26 21:08:27 +00:00
defaultConfig {
2018-11-09 16:12:02 +00:00
applicationId "com.simplemobiletools.calendar.pro"
minSdkVersion 23
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
setProperty("archivesBaseName", "calendar")
vectorDrawables.useSupportLibrary = true
2016-01-26 21:08:27 +00:00
}
2016-04-25 20:46:01 +00:00
signingConfigs {
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 {
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'
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'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
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'
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
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
}