Simple-Contacts/app/build.gradle

73 lines
2.1 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
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-05 10:47:10 +01:00
versionCode 35
versionName "5.1.1"
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
}
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 {
implementation 'com.simplemobiletools:commons:5.3.11'
implementation 'joda-time:joda-time:2.9.9'
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
}
2017-12-31 09:36:39 +01:00
Properties props = new Properties()
def propFile = new File('signing.properties')
if (propFile.canRead()) {
props.load(new FileInputStream(propFile))
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
android.signingConfigs.release.storePassword = props['PASSWORD']
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
android.signingConfigs.release.keyPassword = props['PASSWORD']
} else {
println 'signing.properties found but some entries are missing'
android.buildTypes.release.signingConfig = null
}
} else {
println 'signing.properties not found'
android.buildTypes.release.signingConfig = null
}