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 {
|
2021-04-03 21:47:27 +02:00
|
|
|
compileSdkVersion 30
|
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
|
2021-04-03 21:47:27 +02:00
|
|
|
targetSdkVersion 30
|
2021-12-07 14:51:42 +01:00
|
|
|
versionCode 87
|
|
|
|
versionName "6.16.2"
|
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
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-12-12 18:10:08 +01:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:fd08255626'
|
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'
|
2018-11-05 18:25:36 +01:00
|
|
|
|
2021-05-18 10:14:50 +02: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 10:16:59 +01:00
|
|
|
}
|