2017-12-10 09:16:59 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-11-05 17:25:36 +00:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2017-12-10 09:16:59 +00:00
|
|
|
|
2018-11-06 21:28:17 +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))
|
|
|
|
}
|
2018-11-06 21:28:17 +00:00
|
|
|
|
2017-12-10 09:16:59 +00:00
|
|
|
android {
|
2022-08-18 20:00:11 +00:00
|
|
|
compileSdkVersion 33
|
2017-12-10 09:16:59 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-11-05 11:36:29 +00:00
|
|
|
applicationId "com.simplemobiletools.contacts.pro"
|
2022-12-31 15:04:51 +00:00
|
|
|
minSdkVersion 23
|
2022-08-18 20:00:11 +00:00
|
|
|
targetSdkVersion 33
|
2023-01-12 21:40:43 +00:00
|
|
|
versionCode 101
|
|
|
|
versionName "6.22.1"
|
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']
|
|
|
|
}
|
2018-11-06 21:28:17 +00:00
|
|
|
}
|
2017-12-31 08:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 09:16:59 +00:00
|
|
|
buildTypes {
|
2018-01-30 20:58:22 +00:00
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
2017-12-10 09:16:59 +00:00
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2019-12-22 21:56:51 +00:00
|
|
|
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 {
|
2022-02-05 10:37:16 +00:00
|
|
|
core {}
|
2022-01-03 17:38:16 +00:00
|
|
|
fdroid {}
|
2022-03-02 19:09:08 +00:00
|
|
|
prepaid {}
|
2022-01-03 17:38:16 +00:00
|
|
|
}
|
|
|
|
|
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 {
|
2023-01-12 21:30:40 +00:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:449b24c6a4'
|
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'
|
2020-09-19 08:31:42 +00:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2022-06-27 08:04:17 +00:00
|
|
|
implementation 'me.grantland:autofittextview:0.2.1'
|
2018-11-05 17:25:36 +00:00
|
|
|
|
2022-08-14 09:21:35 +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"
|
2017-12-10 09:16:59 +00:00
|
|
|
}
|