Simple-Contacts/app/build.gradle

69 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 30
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 30
2021-03-04 23:30:24 +01:00
versionCode 81
versionName "6.14.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']
}
}
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.github.SimpleMobileTools:Simple-Commons:8084f88f20'
2021-03-02 19:22:27 +01:00
implementation 'joda-time:joda-time:2.10.3'
2019-01-05 11:58:25 +01:00
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5'
implementation 'com.github.tibbi:IndicatorFastScroll:c3de1d040a'
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
}