Skip to content

Commit

Permalink
v0.8.2-SNAPSHOT
Browse files Browse the repository at this point in the history
OkHttpアップデート
Gsonアップデート
Kotlinアップデート
サポートライブラリの分割に対応
  • Loading branch information
hayama-junpei committed Dec 20, 2016
1 parent c96f13b commit 38fa0c4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions promise-http/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion promise-support-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion promise-support/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}

Expand Down

0 comments on commit 38fa0c4

Please sign in to comment.