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 {
|
2020-01-22 18:26:26 +00:00
|
|
|
compileSdkVersion 29
|
2020-03-08 12:00:19 +00:00
|
|
|
buildToolsVersion "29.0.3"
|
2017-12-10 09:16:59 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-11-05 11:36:29 +00:00
|
|
|
applicationId "com.simplemobiletools.contacts.pro"
|
2020-05-01 20:44:18 +00:00
|
|
|
minSdkVersion 23
|
2020-01-22 18:26:26 +00:00
|
|
|
targetSdkVersion 29
|
2020-05-06 06:04:39 +00:00
|
|
|
versionCode 63
|
|
|
|
versionName "6.10.2"
|
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
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2017-12-10 09:16:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-05-18 18:19:57 +00:00
|
|
|
implementation 'com.simplemobiletools:commons:5.28.10'
|
2018-11-19 15:50:24 +00:00
|
|
|
implementation 'joda-time:joda-time:2.10.1'
|
2019-01-05 10:58:25 +00:00
|
|
|
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5'
|
2020-03-08 17:45:23 +00:00
|
|
|
implementation 'com.github.tibbi:IndicatorFastScroll:08f512858a'
|
2018-11-05 17:25:36 +00:00
|
|
|
|
2020-04-08 08:36:32 +00:00
|
|
|
kapt "androidx.room:room-compiler:2.2.5"
|
|
|
|
implementation "androidx.room:room-runtime:2.2.5"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:2.2.5"
|
2017-12-10 09:16:59 +00:00
|
|
|
}
|