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()
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
|
2017-12-10 10:16:59 +01:00
|
|
|
android {
|
2019-11-28 11:34:01 +01:00
|
|
|
compileSdkVersion 29
|
|
|
|
buildToolsVersion "29.0.2"
|
2017-12-10 10:16:59 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-11-05 12:36:29 +01:00
|
|
|
applicationId "com.simplemobiletools.contacts.pro"
|
2018-10-15 14:19:32 +02:00
|
|
|
minSdkVersion 21
|
2019-11-28 11:34:01 +01:00
|
|
|
targetSdkVersion 29
|
2019-10-28 19:38:28 +01:00
|
|
|
versionCode 52
|
|
|
|
versionName "6.4.4"
|
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 {
|
2018-11-06 22:28:17 +01:00
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
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'
|
2017-12-31 09:36:39 +01:00
|
|
|
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 {
|
2019-12-05 10:08:37 +01:00
|
|
|
implementation 'com.simplemobiletools:commons:5.20.6'
|
2018-11-19 16:50:24 +01:00
|
|
|
implementation 'joda-time:joda-time:2.10.1'
|
2019-12-05 10:08:37 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
|
2019-01-05 11:58:25 +01:00
|
|
|
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5'
|
2018-11-05 18:25:36 +01:00
|
|
|
|
2019-11-28 11:34:01 +01:00
|
|
|
kapt "androidx.room:room-compiler:2.2.2"
|
|
|
|
implementation "androidx.room:room-runtime:2.2.2"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:2.2.2"
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|