Skip to content

Commit

Permalink
rxhttp version upgrade to v3.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
liujingxing committed Mar 25, 2024
1 parent bbf11f1 commit 93f0695
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ android {
plugins {
// kapt/ksp choose one
// id 'kotlin-kapt'
id 'com.google.devtools.ksp' version '1.9.10-1.0.13'
id 'com.google.devtools.ksp' version '1.9.23-1.0.19'
}

dependencies {
def rxhttp_version = '3.2.4'
def rxhttp_version = '3.2.5'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation "com.github.liujingxing.rxhttp:rxhttp:$rxhttp_version"
// ksp/kapt/annotationProcessor choose one
Expand Down
10 changes: 5 additions & 5 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@

| 功能说明 | RxHttp | [Retrofit](https://github.com/square/retrofit) |
| --- | :---: | :---: |
| 版本| v3.2.4| v2.9.0 |
| 版本| v3.2.5| v2.9.0 |
| 状态| 维护中| 维护中 |
| 标准RESTful风格|||
| 学习成本|||
Expand Down Expand Up @@ -197,7 +197,7 @@ android {
}
//3、添加依赖
dependencies {
def rxhttp_version = '3.2.4'
def rxhttp_version = '3.2.5'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation "com.github.liujingxing.rxhttp:rxhttp:$rxhttp_version"
annotationProcessor "com.github.liujingxing.rxhttp:rxhttp-compiler:$rxhttp_version"
Expand Down Expand Up @@ -229,7 +229,7 @@ plugins {
}

dependencies {
def rxhttp_version = '3.2.4'
def rxhttp_version = '3.2.5'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation "com.github.liujingxing.rxhttp:rxhttp:$rxhttp_version"
kapt "com.github.liujingxing.rxhttp:rxhttp-compiler:$rxhttp_version"
Expand Down Expand Up @@ -257,11 +257,11 @@ android {
}
//3、添加插件及依赖
plugins {
id 'com.google.devtools.ksp' version '1.9.10-1.0.13'
id 'com.google.devtools.ksp' version '1.9.23-1.0.19'
}

dependencies {
def rxhttp_version = '3.2.4'
def rxhttp_version = '3.2.5'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation "com.github.liujingxing.rxhttp:rxhttp:$rxhttp_version"
ksp "com.github.liujingxing.rxhttp:rxhttp-compiler:$rxhttp_version"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jdk_version=8
okhttp_version=4.12.0
rxjava_version=3.1.6
rxlife_version=2.2.2
rxhttp_version=3.2.4
rxhttp_version=3.2.5

lifecycle_version=2.6.2
ksp_version=1.9.23-1.0.19
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>3.2.4</version>
<version>3.2.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>3.2.4</version>
<version>3.2.5</version>
</path>
</annotationProcessorPaths>

Expand Down

0 comments on commit 93f0695

Please sign in to comment.