Skip to content
This repository has been archived by the owner on Aug 13, 2020. It is now read-only.

Commit

Permalink
Bump dependencies version
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorAlbertos committed Feb 15, 2017
1 parent d41b0b4 commit 1d9f055
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 29 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## [DISCLAIMER] Branch 1.x will not be any longer actively maintained. Upgrade to RxJava 2.x asap.

[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-RxSocialConnect--Android-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/3616)

OAuth RxJava extension for Android. iOS version is located at this [repository](https://github.com/FuckBoilerplate/RxSocialConnect-iOS).
Expand Down Expand Up @@ -37,8 +39,8 @@ allprojects {
And add next dependencies in the build.gradle of android app module:
```gradle
dependencies {
compile 'com.github.VictorAlbertos.RxSocialConnect-Android:core:1.0.0'
compile "io.reactivex:rxjava:1.2.1"
compile 'com.github.VictorAlbertos.RxSocialConnect-Android:core:1.0.1-1.x'
compile "io.reactivex:rxjava:1.2.6"
}
```

Expand Down Expand Up @@ -170,7 +172,7 @@ First of all, install RxSocialConnectInterceptors library using gradle:

```gradle
dependencies {
compile 'com.github.VictorAlbertos.RxSocialConnect-Android:okhttp_interceptors:1.0.0'
compile 'com.github.VictorAlbertos.RxSocialConnect-Android:okhttp_interceptors:1.0.1-1.x'
}
```

Expand Down
18 changes: 9 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ buildscript {
}

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion "25.0.0"

defaultConfig {
applicationId "org.fuckboilerplate.rxsocialconnect"
minSdkVersion 18
targetSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand All @@ -45,17 +45,17 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.android.support:design:25.1.1'
compile project(':core')
compile project(':okhttp_interceptors')

compile "com.squareup.retrofit2:adapter-rxjava:2.0.1"
compile "com.squareup.retrofit2:converter-gson:2.0.1"
compile "com.github.VictorAlbertos.Jolyglot:gson:0.0.3"
compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.github.VictorAlbertos.Jolyglot:gson:0.0.3'
compile 'io.reactivex:rxandroid:1.2.1'

compile 'com.android.support:support-annotations:23.3.0'
compile 'com.android.support:support-annotations:25.1.1'

testCompile 'junit:junit:4.12'

Expand Down
16 changes: 8 additions & 8 deletions core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'

group='com.github.FuckBoilerplate'
group='com.github.VictorAlbertos'
version='1.0.1-1.x'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion "25.0.0"

defaultConfig {
minSdkVersion 16
targetSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
Expand All @@ -27,13 +27,13 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:appcompat-v7:25.1.1'

compile 'com.github.scribejava:scribejava-apis:3.2.0'
compile 'io.reactivex:rxjava:1.2.1'
compile 'io.reactivex:rxjava:1.2.6'
compile 'io.reactivex:rxandroid:1.2.1'

compile 'com.github.VictorAlbertos:RxActivityResult:0.3.8'
compile 'com.github.VictorAlbertos:RxActivityResult:0.4.1-1.x'
compile 'com.github.VictorAlbertos.Jolyglot:api:0.0.3'

testCompile 'com.github.VictorAlbertos.Jolyglot:gson:0.0.3'
Expand Down
18 changes: 9 additions & 9 deletions okhttp_interceptors/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'

group='com.github.FuckBoilerplate'
group='com.github.VictorAlbertos'
version='1.0.1-1.x'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion "25.0.0"

defaultConfig {
minSdkVersion 16
targetSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
Expand All @@ -25,12 +25,12 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':core')

compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.squareup.okhttp3:okhttp:3.4.1'
compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.squareup.okhttp3:okhttp:3.6.0'

testCompile 'junit:junit:4.12'
testCompile "com.squareup.retrofit2:adapter-rxjava:2.0.1"
testCompile "com.squareup.retrofit2:converter-gson:2.0.1"
testCompile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
testCompile 'com.squareup.retrofit2:converter-gson:2.1.0'
}

// build a jar with source files
Expand Down

0 comments on commit 1d9f055

Please sign in to comment.