Simple-Contacts/app/build.gradle

70 lines
2.0 KiB
Groovy
Raw Normal View History

2017-12-10 10:16:59 +01:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
2017-12-10 10:16:59 +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))
}
2017-12-10 10:16:59 +01:00
android {
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"
minSdkVersion 21
targetSdkVersion 29
2021-01-10 16:48:08 +01:00
versionCode 79
versionName "6.14.0"
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']
}
}
2017-12-31 09:36:39 +01:00
}
2017-12-10 10:16:59 +01:00
buildTypes {
debug {
applicationIdSuffix ".debug"
}
2017-12-10 10:16:59 +01:00
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
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 {
implementation 'com.simplemobiletools:commons:5.33.30'
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'
implementation 'com.github.tibbi:IndicatorFastScroll:c7ef0c82e5'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
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
}