2016-01-26 22:08:27 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2016-09-15 22:01:38 +02:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2016-01-26 22:08:27 +01:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 23
|
2016-06-15 16:11:05 +02:00
|
|
|
buildToolsVersion "23.0.3"
|
2016-01-26 22:08:27 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-02-25 22:13:00 +01:00
|
|
|
applicationId "com.simplemobiletools.calendar"
|
2016-01-26 22:08:27 +01:00
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 23
|
2016-11-26 11:45:49 +01:00
|
|
|
versionCode 39
|
|
|
|
versionName "1.39"
|
2016-01-26 22:08:27 +01:00
|
|
|
}
|
2016-04-25 22:46:01 +02:00
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release
|
|
|
|
}
|
|
|
|
|
2016-01-26 22:08:27 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2016-04-25 22:46:01 +02:00
|
|
|
minifyEnabled true
|
2016-01-26 22:08:27 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-04-25 22:46:01 +02:00
|
|
|
signingConfig signingConfigs.release
|
2016-01-26 22:08:27 +01:00
|
|
|
}
|
|
|
|
}
|
2016-09-15 22:01:38 +02:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2016-01-26 22:08:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-06-15 16:11:05 +02:00
|
|
|
compile 'com.android.support:appcompat-v7:23.4.0'
|
2016-07-03 21:22:13 +02:00
|
|
|
compile 'com.android.support:design:23.4.0'
|
2016-01-26 23:05:09 +01:00
|
|
|
compile 'joda-time:joda-time:2.9.1'
|
2016-01-31 17:02:44 +01:00
|
|
|
compile 'com.github.yukuku:ambilwarna:2.0.1'
|
2016-09-13 23:03:21 +02:00
|
|
|
compile 'com.facebook.stetho:stetho:1.4.1'
|
2016-11-24 00:09:07 +01:00
|
|
|
compile 'com.github.bumptech.glide:glide:3.7.0'
|
2016-11-23 20:48:32 +01:00
|
|
|
compile 'com.simplemobiletools:filepicker:1.5.4@aar'
|
2016-11-23 18:55:27 +01:00
|
|
|
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
|
|
|
|
2016-09-15 22:01:38 +02:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext.kotlin_version = '1.0.3'
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-25 22:46:01 +02:00
|
|
|
def 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('STORE_PASSWORD') &&
|
|
|
|
props.containsKey('KEY_ALIAS') && props.containsKey('KEY_PASSWORD')) {
|
|
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
|
|
|
android.signingConfigs.release.storePassword = props['STORE_PASSWORD']
|
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
|
|
|
android.signingConfigs.release.keyPassword = props['KEY_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
|
|
|
|
}
|