Skip to content

Commit

Permalink
版本升级至2.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
liujingxing committed Sep 4, 2021
1 parent 51645b9 commit e9c8f9b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ android {
}

dependencies {
implementation 'com.github.liujingxing.rxhttp:rxhttp:2.6.7'
implementation 'com.github.liujingxing.rxhttp:rxhttp:2.6.8'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.7' //Use the annotationProcessor instead of kapt, if you use Java
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.8' //Use the annotationProcessor instead of kapt, if you use Java
}
```

Expand All @@ -69,15 +69,15 @@ dependencies {
implementation 'com.github.liujingxing.rxlife:rxlife-rxjava2:2.2.0' //RxJava2, Automatic close request

//rxjava3
implementation 'io.reactivex.rxjava3:rxjava:3.0.6'
implementation 'io.reactivex.rxjava3:rxjava:3.1.1'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
implementation 'com.github.liujingxing.rxlife:rxlife-rxjava3:2.2.0' //RxJava3, Automatic close request

implementation 'com.github.liujingxing.rxhttp:converter-fastjson:2.6.7'
implementation 'com.github.liujingxing.rxhttp:converter-jackson:2.6.7'
implementation 'com.github.liujingxing.rxhttp:converter-moshi:2.6.7'
implementation 'com.github.liujingxing.rxhttp:converter-protobuf:2.6.7'
implementation 'com.github.liujingxing.rxhttp:converter-simplexml:2.6.7'
implementation 'com.github.liujingxing.rxhttp:converter-fastjson:2.6.8'
implementation 'com.github.liujingxing.rxhttp:converter-jackson:2.6.8'
implementation 'com.github.liujingxing.rxhttp:converter-moshi:2.6.8'
implementation 'com.github.liujingxing.rxhttp:converter-protobuf:2.6.8'
implementation 'com.github.liujingxing.rxhttp:converter-simplexml:2.6.8'
}
```

Expand Down
16 changes: 8 additions & 8 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ android {
}

dependencies {
implementation 'com.github.liujingxing.rxhttp:rxhttp:2.6.7'
implementation 'com.github.liujingxing.rxhttp:rxhttp:2.6.8'
implementation 'com.squareup.okhttp3:okhttp:4.9.1' //rxhttp v2.2.2版本起,需要手动依赖okhttp
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.7' //生成RxHttp类,纯Java项目,请使用annotationProcessor代替kapt
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.8' //生成RxHttp类,纯Java项目,请使用annotationProcessor代替kapt
}
```

Expand All @@ -110,16 +110,16 @@ dependencies {
implementation 'com.github.liujingxing.rxlife:rxlife-rxjava2:2.2.0' //管理RxJava2生命周期,页面销毁,关闭请求

//rxjava3
implementation 'io.reactivex.rxjava3:rxjava:3.0.6'
implementation 'io.reactivex.rxjava3:rxjava:3.1.1'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
implementation 'com.github.liujingxing.rxlife:rxlife-rxjava3:2.2.0' //管理RxJava3生命周期,页面销毁,关闭请求

//非必须,根据自己需求选择 RxHttp默认内置了GsonConverter
implementation 'com.github.liujingxing.rxhttp:converter-fastjson:2.6.7'
implementation 'com.github.liujingxing.rxhttp:converter-jackson:2.6.7'
implementation 'com.github.liujingxing.rxhttp:converter-moshi:2.6.7'
implementation 'com.github.liujingxing.rxhttp:converter-protobuf:2.6.7'
implementation 'com.github.liujingxing.rxhttp:converter-simplexml:2.6.7'
implementation 'com.github.liujingxing.rxhttp:converter-fastjson:2.6.8'
implementation 'com.github.liujingxing.rxhttp:converter-jackson:2.6.8'
implementation 'com.github.liujingxing.rxhttp:converter-moshi:2.6.8'
implementation 'com.github.liujingxing.rxhttp:converter-protobuf:2.6.8'
implementation 'com.github.liujingxing.rxhttp:converter-simplexml:2.6.8'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ maven = 1

okhttp_version=4.9.1
rxlife_version=2.2.0
rxhttp_version=2.6.7
rxhttp_version=2.6.8

fastjson_version=1.2.76
jackson_version=2.12.3
Expand Down
4 changes: 2 additions & 2 deletions maven_dependency.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependency>
<groupId>com.github.liujingxing.rxhttp</groupId>
<artifactId>rxhttp</artifactId>
<version>2.6.7</version>
<version>2.6.8</version>
</dependency>

<!-- 非必须 RxJava2/RxJava3 二选一或都不选 -->
Expand Down Expand Up @@ -48,7 +48,7 @@
<path>
<groupId>com.github.liujingxing.rxhttp</groupId>
<artifactId>rxhttp-compiler</artifactId>
<version>2.6.7</version>
<version>2.6.8</version>
</path>
</annotationProcessorPaths>

Expand Down

0 comments on commit e9c8f9b

Please sign in to comment.