2016-01-26 21:08:27 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2016-09-15 20:01:38 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2016-01-26 21:08:27 +00:00
|
|
|
|
|
|
|
android {
|
2016-12-09 08:33:16 +00:00
|
|
|
compileSdkVersion 25
|
2017-03-05 21:08:47 +00:00
|
|
|
buildToolsVersion "25.0.2"
|
2016-01-26 21:08:27 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-02-25 21:13:00 +00:00
|
|
|
applicationId "com.simplemobiletools.calendar"
|
2016-01-26 21:08:27 +00:00
|
|
|
minSdkVersion 16
|
2016-12-09 08:33:16 +00:00
|
|
|
targetSdkVersion 25
|
2017-07-29 08:04:51 +00:00
|
|
|
versionCode 86
|
|
|
|
versionName "2.6.0"
|
2017-02-01 18:17:54 +00:00
|
|
|
multiDexEnabled true
|
2016-01-26 21:08:27 +00:00
|
|
|
}
|
2016-04-25 20:46:01 +00:00
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release
|
2017-07-23 10:17:57 +00:00
|
|
|
debug
|
2016-04-25 20:46:01 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 21:08:27 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-06-25 19:09:28 +00:00
|
|
|
minifyEnabled true
|
2016-01-26 21:08:27 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-04-25 20:46:01 +00:00
|
|
|
signingConfig signingConfigs.release
|
2016-01-26 21:08:27 +00:00
|
|
|
}
|
2017-07-23 10:17:57 +00:00
|
|
|
debug {
|
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
}
|
2016-01-26 21:08:27 +00:00
|
|
|
}
|
2016-09-15 20:01:38 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2016-01-26 21:08:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-07-28 18:39:30 +00:00
|
|
|
compile 'com.simplemobiletools:commons:2.23.0'
|
2016-01-26 22:05:09 +00:00
|
|
|
compile 'joda-time:joda-time:2.9.1'
|
2016-09-13 21:03:21 +00:00
|
|
|
compile 'com.facebook.stetho:stetho:1.4.1'
|
2016-11-23 17:55:27 +00:00
|
|
|
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
2017-02-01 18:17:54 +00:00
|
|
|
compile 'com.android.support:multidex:1.0.1'
|
2017-01-29 20:26:42 +00:00
|
|
|
|
2017-07-11 17:55:05 +00:00
|
|
|
compile 'com.google.code.gson:gson:2.8.0'
|
2017-01-30 20:34:41 +00:00
|
|
|
compile('com.google.http-client:google-http-client-gson:1.22.0') {
|
|
|
|
exclude group: 'org.apache.httpcomponents'
|
|
|
|
}
|
|
|
|
|
2017-01-29 20:26:42 +00:00
|
|
|
compile 'com.google.android.gms:play-services-auth:10.0.1'
|
|
|
|
compile('com.google.api-client:google-api-client-android:1.22.0') {
|
|
|
|
exclude group: 'org.apache.httpcomponents'
|
|
|
|
}
|
2017-07-11 17:55:05 +00:00
|
|
|
compile('com.google.apis:google-api-services-calendar:v3-rev249-1.22.0') {
|
2017-01-29 20:26:42 +00:00
|
|
|
exclude group: 'org.apache.httpcomponents'
|
2017-07-11 17:55:05 +00:00
|
|
|
}
|
2017-01-29 20:26:42 +00:00
|
|
|
|
2016-09-15 20:01:38 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
2017-07-06 18:20:23 +00:00
|
|
|
ext.kotlin_version = '1.1.3-2'
|
2016-09-15 20:01:38 +00: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 20:46:01 +00:00
|
|
|
def Properties props = new Properties()
|
|
|
|
def propFile = new File('signing.properties')
|
|
|
|
if (propFile.canRead()) {
|
|
|
|
props.load(new FileInputStream(propFile))
|
|
|
|
|
2017-01-22 09:30:55 +00:00
|
|
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
|
2016-04-25 20:46:01 +00:00
|
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
2017-01-22 09:30:55 +00:00
|
|
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
2016-04-25 20:46:01 +00:00
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
2017-01-22 09:30:55 +00:00
|
|
|
android.signingConfigs.release.keyPassword = props['PASSWORD']
|
2016-04-25 20:46:01 +00:00
|
|
|
} else {
|
2017-07-23 10:17:57 +00:00
|
|
|
println 'signing.properties found but some release entries are missing'
|
2016-04-25 20:46:01 +00:00
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|
2017-07-23 10:17:57 +00:00
|
|
|
|
|
|
|
if (props != null && props.containsKey('DEBUG_STORE_FILE') && props.containsKey('DEBUG_KEY_ALIAS') && props.containsKey('DEBUG_PASSWORD')) {
|
|
|
|
android.signingConfigs.debug.storeFile = file(props['DEBUG_STORE_FILE'])
|
|
|
|
android.signingConfigs.debug.storePassword = props['DEBUG_PASSWORD']
|
|
|
|
android.signingConfigs.debug.keyAlias = props['DEBUG_KEY_ALIAS']
|
|
|
|
android.signingConfigs.debug.keyPassword = props['DEBUG_PASSWORD']
|
|
|
|
} else {
|
|
|
|
println 'signing.properties found but some debug entries are missing'
|
|
|
|
android.buildTypes.debug.signingConfig = null
|
|
|
|
}
|
2016-04-25 20:46:01 +00:00
|
|
|
} else {
|
|
|
|
println 'signing.properties not found'
|
|
|
|
android.buildTypes.release.signingConfig = null
|
2017-07-23 10:17:57 +00:00
|
|
|
android.buildTypes.debug.signingConfig = null
|
2016-04-25 20:46:01 +00:00
|
|
|
}
|