Skip to content

Commit

Permalink
RxHttp版本升级至2.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
liujingxing committed Jul 7, 2021
1 parent fb78180 commit cbc4144
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
14 changes: 7 additions & 7 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.4'
implementation 'com.github.liujingxing.rxhttp:rxhttp:2.6.5'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.4' //Use the annotationProcessor instead of kapt, if you use Java
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.5' //Use the annotationProcessor instead of kapt, if you use Java
}
```

Expand Down Expand Up @@ -80,11 +80,11 @@ dependencies {
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
implementation 'com.github.liujingxing.rxlife:rxlife-rxjava3:2.1.0' //RxJava3, Automatic close request

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

Expand Down
14 changes: 7 additions & 7 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.4'
implementation 'com.github.liujingxing.rxhttp:rxhttp:2.6.5'
implementation 'com.squareup.okhttp3:okhttp:4.9.1' //rxhttp v2.2.2版本起,需要手动依赖okhttp
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.4' //生成RxHttp类,纯Java项目,请使用annotationProcessor代替kapt
kapt 'com.github.liujingxing.rxhttp:rxhttp-compiler:2.6.5' //生成RxHttp类,纯Java项目,请使用annotationProcessor代替kapt
}
```

Expand Down Expand Up @@ -120,11 +120,11 @@ dependencies {
implementation 'com.github.liujingxing.rxlife:rxlife-rxjava3:2.1.0' //管理RxJava3生命周期,页面销毁,关闭请求

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

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

okhttp_version=4.9.1
rxlife_version=2.1.0
rxhttp_version=2.6.5-beta5
rxhttp_version=2.6.5

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.4</version>
<version>2.6.5</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.4</version>
<version>2.6.5</version>
</path>
</annotationProcessorPaths>

Expand Down

0 comments on commit cbc4144

Please sign in to comment.