Simple-Calendar/app/build.gradle

83 lines
2.3 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 {
compileSdkVersion 33
2016-01-26 22:08:27 +01:00
defaultConfig {
2018-11-09 17:12:02 +01:00
applicationId "com.simplemobiletools.calendar.pro"
minSdkVersion 23
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
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
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'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
resourcePlaceholders {
files = ['xml/shortcuts.xml']
}
2016-01-26 22:08:27 +01:00
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:a95c7109bd'
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
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
}