2017-12-10 10:16:59 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-11-05 18:25:36 +01:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2017-12-10 10:16:59 +01:00
|
|
|
|
2018-11-06 22:28:17 +01:00
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def keystoreProperties = new Properties()
|
2019-12-19 21:57:01 +01:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
2018-11-06 22:28:17 +01:00
|
|
|
|
2017-12-10 10:16:59 +01:00
|
|
|
android {
|
2022-04-10 21:40:19 +02:00
|
|
|
compileSdkVersion 31
|
2017-12-10 10:16:59 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-11-05 12:36:29 +01:00
|
|
|
applicationId "com.simplemobiletools.contacts.pro"
|
2020-05-23 20:17:39 +02:00
|
|
|
minSdkVersion 21
|
2022-04-10 21:40:19 +02:00
|
|
|
targetSdkVersion 31
|
2022-06-26 09:46:33 +02:00
|
|
|
versionCode 95
|
|
|
|
versionName "6.19.1"
|
2017-12-10 10:38:17 +01:00
|
|
|
setProperty("archivesBaseName", "contacts")
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|
|
|
|
|
2017-12-31 09:36:39 +01:00
|
|
|
signingConfigs {
|
2019-12-19 21:57:01 +01:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
2018-11-06 22:28:17 +01:00
|
|
|
}
|
2017-12-31 09:36:39 +01:00
|
|
|
}
|
|
|
|
|
2017-12-10 10:16:59 +01:00
|
|
|
buildTypes {
|
2018-01-30 21:58:22 +01:00
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
2017-12-10 10:16:59 +01:00
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2019-12-22 22:56:51 +01:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|
|
|
|
}
|
2017-12-10 10:38:17 +01:00
|
|
|
|
2022-01-03 18:38:16 +01:00
|
|
|
flavorDimensions "variants"
|
|
|
|
productFlavors {
|
2022-02-05 11:37:16 +01:00
|
|
|
core {}
|
2022-01-03 18:38:16 +01:00
|
|
|
fdroid {}
|
2022-03-02 20:09:08 +01:00
|
|
|
prepaid {}
|
2022-01-03 18:38:16 +01:00
|
|
|
}
|
|
|
|
|
2017-12-10 10:38:17 +01:00
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-07-03 18:36:43 +02:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:ed8c5a3657'
|
2021-11-19 17:36:02 +01:00
|
|
|
implementation 'com.googlecode.ez-vcard:ez-vcard:0.11.3'
|
2021-12-07 12:27:33 +01:00
|
|
|
implementation 'com.github.tibbi:IndicatorFastScroll:4524cd0b61'
|
2020-09-19 10:31:42 +02:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2022-06-27 10:04:17 +02:00
|
|
|
implementation 'me.grantland:autofittextview:0.2.1'
|
2018-11-05 18:25:36 +01:00
|
|
|
|
2022-06-06 19:40:34 +02:00
|
|
|
kapt "androidx.room:room-compiler:2.4.2"
|
|
|
|
implementation "androidx.room:room-runtime:2.4.2"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:2.4.2"
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|