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 {
|
2020-01-22 19:26:26 +01:00
|
|
|
compileSdkVersion 29
|
2020-03-08 13:00:19 +01:00
|
|
|
buildToolsVersion "29.0.3"
|
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
|
2020-01-22 19:26:26 +01:00
|
|
|
targetSdkVersion 29
|
2021-01-02 12:56:53 +01:00
|
|
|
versionCode 78
|
|
|
|
versionName "6.13.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-01-10 16:47:59 +01:00
|
|
|
implementation 'com.simplemobiletools:commons:5.32.24'
|
2018-11-19 16:50:24 +01:00
|
|
|
implementation 'joda-time:joda-time:2.10.1'
|
2019-01-05 11:58:25 +01:00
|
|
|
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5'
|
2020-03-08 18:45:23 +01:00
|
|
|
implementation 'com.github.tibbi:IndicatorFastScroll:08f512858a'
|
2020-09-19 10:31:42 +02:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2018-11-05 18:25:36 +01:00
|
|
|
|
2020-12-31 15:24:56 +01:00
|
|
|
kapt "androidx.room:room-compiler:2.2.6"
|
|
|
|
implementation "androidx.room:room-runtime:2.2.6"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:2.2.6"
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|