2017-12-10 10:16:59 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 27
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.contacts"
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 27
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0.0"
|
2017-12-10 10:38:17 +01:00
|
|
|
setProperty("archivesBaseName", "contacts")
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
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 {
|
2017-12-11 21:00:32 +01:00
|
|
|
implementation 'com.simplemobiletools:commons:3.2.14'
|
2017-12-10 10:16:59 +01:00
|
|
|
}
|