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 {
|
2016-12-09 09:33:16 +01:00
|
|
|
compileSdkVersion 25
|
2017-03-05 22:08:47 +01:00
|
|
|
buildToolsVersion "25.0.2"
|
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
|
2016-12-09 09:33:16 +01:00
|
|
|
targetSdkVersion 25
|
2017-08-28 16:33:01 +02:00
|
|
|
versionCode 90
|
|
|
|
versionName "2.7.2"
|
2017-02-01 19:17:54 +01:00
|
|
|
multiDexEnabled true
|
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 {
|
2017-06-25 21:09:28 +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
|
|
|
}
|
2017-08-14 22:18:24 +02:00
|
|
|
fdroid {
|
|
|
|
initWith debug
|
|
|
|
}
|
2016-01-26 22:08:27 +01:00
|
|
|
}
|
2016-09-15 22:01:38 +02:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
2017-08-12 22:46:57 +02:00
|
|
|
debug.java.srcDirs += 'src/debug/kotlin'
|
|
|
|
release.java.srcDirs += 'src/release/kotlin'
|
2017-08-14 22:18:24 +02:00
|
|
|
fdroid.java.srcDirs += 'src/fdroid/kotlin'
|
2016-09-15 22:01:38 +02:00
|
|
|
}
|
2017-08-12 23:13:59 +02:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2016-01-26 22:08:27 +01:00
|
|
|
}
|
|
|
|
|
2017-08-12 22:46:57 +02:00
|
|
|
ext {
|
|
|
|
leakCanaryVersion = '1.5.2'
|
|
|
|
}
|
|
|
|
|
2016-01-26 22:08:27 +01:00
|
|
|
dependencies {
|
2017-08-27 22:58:13 +02:00
|
|
|
compile 'com.simplemobiletools:commons:2.26.2'
|
2016-01-26 23:05:09 +01:00
|
|
|
compile 'joda-time:joda-time:2.9.1'
|
2016-09-13 23:03:21 +02:00
|
|
|
compile 'com.facebook.stetho:stetho:1.4.1'
|
2016-11-23 18:55:27 +01:00
|
|
|
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
2017-02-01 19:17:54 +01:00
|
|
|
compile 'com.android.support:multidex:1.0.1'
|
2017-07-11 19:55:05 +02:00
|
|
|
compile 'com.google.code.gson:gson:2.8.0'
|
2016-09-15 22:01:38 +02:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2017-08-12 23:13:59 +02:00
|
|
|
|
2017-08-12 22:46:57 +02:00
|
|
|
debugCompile "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
|
|
|
|
releaseCompile "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion"
|
2016-09-15 22:01:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
2017-08-19 09:42:23 +02:00
|
|
|
ext.kotlin_version = '1.1.4-2'
|
2016-09-15 22:01:38 +02:00
|
|
|
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))
|
|
|
|
|
2017-01-22 10:30:55 +01:00
|
|
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
|
2016-04-25 22:46:01 +02:00
|
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
2017-01-22 10:30:55 +01:00
|
|
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
2016-04-25 22:46:01 +02:00
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
2017-01-22 10:30:55 +01:00
|
|
|
android.signingConfigs.release.keyPassword = props['PASSWORD']
|
2016-04-25 22:46:01 +02:00
|
|
|
} else {
|
2017-07-23 12:17:57 +02:00
|
|
|
println 'signing.properties found but some release entries are missing'
|
2016-04-25 22:46:01 +02:00
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
println 'signing.properties not found'
|
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|