Simple-Contacts/app/build.gradle

74 lines
2 KiB
Groovy
Raw Normal View History

2017-12-10 09:16:59 +00:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
2017-12-10 09:16:59 +00:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
2019-12-19 20:57:01 +00:00
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
2017-12-10 09:16:59 +00:00
android {
compileSdkVersion 30
2017-12-10 09:16:59 +00:00
defaultConfig {
2018-11-05 11:36:29 +00:00
applicationId "com.simplemobiletools.contacts.pro"
minSdkVersion 21
targetSdkVersion 30
2022-01-03 21:31:50 +00:00
versionCode 89
versionName "6.17.0"
2017-12-10 09:38:17 +00:00
setProperty("archivesBaseName", "contacts")
2017-12-10 09:16:59 +00:00
}
2017-12-31 08:36:39 +00:00
signingConfigs {
2019-12-19 20:57:01 +00:00
if (keystorePropertiesFile.exists()) {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
2017-12-31 08:36:39 +00:00
}
2017-12-10 09:16:59 +00:00
buildTypes {
debug {
applicationIdSuffix ".debug"
}
2017-12-10 09:16:59 +00:00
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
if (keystorePropertiesFile.exists()) {
signingConfig signingConfigs.release
}
2017-12-10 09:16:59 +00:00
}
}
2017-12-10 09:38:17 +00:00
2022-01-03 17:38:16 +00:00
flavorDimensions "variants"
productFlavors {
basic {}
fdroid {}
}
2017-12-10 09:38:17 +00:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2017-12-10 09:16:59 +00:00
}
dependencies {
2022-01-03 17:25:23 +00:00
implementation 'com.github.SimpleMobileTools:Simple-Commons:14033f9b50'
2021-11-19 16:36:02 +00:00
implementation 'com.googlecode.ez-vcard:ez-vcard:0.11.3'
2021-12-07 11:27:33 +00:00
implementation 'com.github.tibbi:IndicatorFastScroll:4524cd0b61'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
2021-05-18 08:14:50 +00:00
kapt "androidx.room:room-compiler:2.3.0"
implementation "androidx.room:room-runtime:2.3.0"
annotationProcessor "androidx.room:room-compiler:2.3.0"
2017-12-10 09:16:59 +00:00
}