Skip to content

Commit

Permalink
Remove all RxJava1 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wakwak3125 committed Jan 2, 2018
1 parent 17d82c0 commit b96dcc4
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@ ext {
databindingBaseLibraryVersion = '1.0'
databindingLibraryVersion = '1.0-rc3'
supportLibrariesVersion = '23.1.1'
rxJavaVersion = '1.1.0'
rxJava2Version = '2.1.8'
rxAndroidVersion = '1.0.1'
rxAndroid2Version = '2.0.1'
spockCoreVersion = '1.0-groovy-2.4'
cglibVersion = '2.2'
}
1 change: 0 additions & 1 deletion droidux-processor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ dependencies {
compile 'com.google.auto:auto-common:0.6'
compile 'com.google.auto.service:auto-service:1.0-rc2'

compile "io.reactivex:rxjava:${project.rxJavaVersion}"
compile "io.reactivex.rxjava2:rxjava:${project.rxJava2Version}"
compile "com.android.databinding:baseLibrary:${project.databindingBaseLibraryVersion}"
compile fileTree(dir: './libs', includes: ['*.jar'])
Expand Down
4 changes: 2 additions & 2 deletions examples/counter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ android {
}

dependencies {
compile "io.reactivex:rxjava:${project.rxJavaVersion}"
compile "io.reactivex:rxandroid:${project.rxAndroidVersion}"
compile "io.reactivex.rxjava2:rxjava:${project.rxJava2Version}"
compile "io.reactivex.rxjava2:rxandroid:${project.rxAndroid2Version}"
compile project(':droidux')
annotationProcessor project(':droidux-processor')
compile project(':middlewares:droidux-thunk')
Expand Down
4 changes: 2 additions & 2 deletions examples/todomvc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile "io.reactivex:rxjava:${project.rxJavaVersion}"
compile "io.reactivex:rxandroid:${project.rxAndroidVersion}"
compile "io.reactivex.rxjava2:rxjava:${project.rxJava2Version}"
compile "io.reactivex.rxjava2:rxandroid:${project.rxAndroid2Version}"
compile project(':droidux')
annotationProcessor project(':droidux-processor')
compile "com.android.support:appcompat-v7:${project.supportLibrariesVersion}"
Expand Down
4 changes: 2 additions & 2 deletions examples/todos-with-dagger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ configurations.all {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile "io.reactivex:rxjava:${project.rxJavaVersion}"
compile "io.reactivex:rxandroid:${project.rxAndroidVersion}"
compile "io.reactivex.rxjava2:rxjava:${project.rxJava2Version}"
compile "io.reactivex.rxjava2:rxandroid:${project.rxAndroid2Version}"
compile project(':droidux')
annotationProcessor project(':droidux-processor')
compile "com.android.support:appcompat-v7:${project.supportLibrariesVersion}"
Expand Down
4 changes: 2 additions & 2 deletions examples/todos-with-undo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile "io.reactivex:rxjava:${project.rxJavaVersion}"
compile "io.reactivex:rxandroid:${project.rxAndroidVersion}"
compile "io.reactivex.rxjava2:rxjava:${project.rxJava2Version}"
compile "io.reactivex.rxjava2:rxandroid:${project.rxAndroid2Version}"
compile project(':droidux')
annotationProcessor project(':droidux-processor')
compile "com.android.support:appcompat-v7:${project.supportLibrariesVersion}"
Expand Down

0 comments on commit b96dcc4

Please sign in to comment.