Simple-Contacts/app/build.gradle

63 lines
1.8 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()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
2017-12-10 10:16:59 +01:00
android {
2018-08-21 11:11:57 +02:00
compileSdkVersion 28
buildToolsVersion "28.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
2018-08-21 11:11:57 +02:00
targetSdkVersion 28
2018-11-06 22:36:05 +01:00
versionCode 36
versionName "6.0.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 {
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'
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 {
2018-11-30 20:45:40 +01:00
implementation 'com.simplemobiletools:commons:5.5.1'
2018-11-19 16:50:24 +01:00
implementation 'joda-time:joda-time:2.10.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
2018-10-14 23:40:05 +02:00
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.4'
kapt "androidx.room:room-compiler:2.0.0"
implementation "androidx.room:room-runtime:2.0.0"
annotationProcessor "androidx.room:room-compiler:2.0.0"
2017-12-10 10:16:59 +01:00
}