diff --git a/build.gradle b/build.gradle index e264cfd..268df3d 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.2.2' + classpath 'com.android.tools.build:gradle:2.2.3' } } diff --git a/gradle.properties b/gradle.properties index 0a38700..7dba7ce 100644 --- a/gradle.properties +++ b/gradle.properties @@ -21,14 +21,14 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryErro org.gradle.parallel=false org.gradle.configureondemand=true -kotlin_version=1.0.4 +kotlin_version=1.0.5-3 android_support_version=24.2.1 # for gradle-mvn-push.gradle # Build and Push -> $ gradlew clean build uploadArchives -VERSION_NAME=0.8.1 -#VERSION_NAME=0.8.1-SNAPSHOT -VERSION_CODE=22 +#VERSION_NAME=0.8.2 +VERSION_NAME=0.8.2-SNAPSHOT +VERSION_CODE=23 GROUP=tv.loilo.promise POM_DESCRIPTION=A simple promise library for Android(Java and Kotlin) diff --git a/promise-http/build.gradle b/promise-http/build.gradle index f563c62..31465a3 100644 --- a/promise-http/build.gradle +++ b/promise-http/build.gradle @@ -25,9 +25,9 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' - compile "com.android.support:support-v4:${android_support_version}" - compile 'com.squareup.okhttp3:okhttp:3.4.1' - compile 'com.google.code.gson:gson:2.7' + compile "com.android.support:support-compat:${android_support_version}" + compile 'com.squareup.okhttp3:okhttp:3.5.0' + compile 'com.google.code.gson:gson:2.8.0' compile project(':promise') androidTestCompile 'com.android.support.test:runner:0.5' androidTestCompile 'com.android.support.test:rules:0.5' diff --git a/promise-support-kotlin/build.gradle b/promise-support-kotlin/build.gradle index 4fcdc52..c05795c 100644 --- a/promise-support-kotlin/build.gradle +++ b/promise-support-kotlin/build.gradle @@ -25,7 +25,7 @@ android { dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') testCompile 'junit:junit:4.12' - compile "com.android.support:support-v4:${android_support_version}" + compile "com.android.support:support-fragment:${android_support_version}" compile "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}" compile project(':promise') compile project(':promise-kotlin') diff --git a/promise-support/build.gradle b/promise-support/build.gradle index 0b13e38..c39bbc8 100644 --- a/promise-support/build.gradle +++ b/promise-support/build.gradle @@ -21,7 +21,7 @@ android { dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') testCompile 'junit:junit:4.12' - compile "com.android.support:support-v4:${android_support_version}" + compile "com.android.support:support-fragment:${android_support_version}" compile project(':promise') }