Simple-Contacts/app/build.gradle

63 lines
1.8 KiB
Groovy
Raw Normal View History

2017-12-10 09:16:59 +00:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
2017-12-10 09:16:59 +00:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
2017-12-10 09:16:59 +00:00
android {
2018-08-21 09:11:57 +00:00
compileSdkVersion 28
buildToolsVersion "28.0.3"
2017-12-10 09:16:59 +00:00
defaultConfig {
2018-11-05 11:36:29 +00:00
applicationId "com.simplemobiletools.contacts.pro"
minSdkVersion 21
2018-08-21 09:11:57 +00:00
targetSdkVersion 28
2018-12-12 16:57:52 +00:00
versionCode 38
versionName "6.1.1"
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 {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
2017-12-31 08:36:39 +00:00
}
2017-12-10 09:16:59 +00:00
buildTypes {
debug {
applicationIdSuffix ".debug"
}
2017-12-10 09:16:59 +00:00
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2017-12-31 08:36:39 +00:00
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 {
implementation 'com.simplemobiletools:commons:5.6.2'
2018-11-19 15:50:24 +00:00
implementation 'joda-time:joda-time:2.10.1'
2018-12-27 19:26:07 +00:00
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
2018-10-14 21:40:05 +00: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 09:16:59 +00:00
}