Skip to content

Commit b10aed0

Browse files
committed
rxhttp 版本更新至2.4.3
1 parent 0585b9e commit b10aed0

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ android {
6868
}
6969

7070
dependencies {
71-
implementation 'com.ljx.rxhttp:rxhttp:2.4.2'
71+
implementation 'com.ljx.rxhttp:rxhttp:2.4.3'
7272
implementation 'com.squareup.okhttp3:okhttp:4.9.0' //rxhttp v2.2.2版本起,需要手动依赖okhttp
73-
kapt 'com.ljx.rxhttp:rxhttp-compiler:2.4.2' //生成RxHttp类,纯Java项目,请使用annotationProcessor代替kapt
73+
kapt 'com.ljx.rxhttp:rxhttp-compiler:2.4.3' //生成RxHttp类,纯Java项目,请使用annotationProcessor代替kapt
7474
}
7575
```
7676

@@ -103,11 +103,11 @@ dependencies {
103103
implementation 'com.ljx.rxlife3:rxlife-rxjava:3.0.0' //管理RxJava3生命周期,页面销毁,关闭请求
104104

105105
//非必须,根据自己需求选择 RxHttp默认内置了GsonConverter
106-
implementation 'com.ljx.rxhttp:converter-fastjson:2.4.2'
107-
implementation 'com.ljx.rxhttp:converter-jackson:2.4.2'
108-
implementation 'com.ljx.rxhttp:converter-moshi:2.4.2'
109-
implementation 'com.ljx.rxhttp:converter-protobuf:2.4.2'
110-
implementation 'com.ljx.rxhttp:converter-simplexml:2.4.2'
106+
implementation 'com.ljx.rxhttp:converter-fastjson:2.4.3'
107+
implementation 'com.ljx.rxhttp:converter-jackson:2.4.3'
108+
implementation 'com.ljx.rxhttp:converter-moshi:2.4.3'
109+
implementation 'com.ljx.rxhttp:converter-protobuf:2.4.3'
110+
implementation 'com.ljx.rxhttp:converter-simplexml:2.4.3'
111111
}
112112
```
113113

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ dependencies {
5858
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.2.0"
5959
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
6060

61-
implementation project(":rxhttp")
62-
kapt project(':rxhttp-compiler')
61+
// implementation project(":rxhttp")
62+
// kapt project(':rxhttp-compiler')
6363

6464
implementation "com.squareup.okhttp3:okhttp:${okhttp_version}"
6565

66-
// implementation "com.ljx.rxhttp:rxhttp:${rxhttp_version}"
67-
// kapt "com.ljx.rxhttp:rxhttp-compiler:${rxhttp_version}"
66+
implementation "com.ljx.rxhttp:rxhttp:${rxhttp_version}"
67+
kapt "com.ljx.rxhttp:rxhttp-compiler:${rxhttp_version}"
6868

6969
implementation 'com.ljx.rxlife:rxlife-coroutine:2.0.1'
7070

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ org.gradle.jvmargs=-Xmx1536m
1919

2020
okhttp_version=4.9.0
2121

22-
rxhttp_version=2.4.2
23-
rxhttp_next_version=2.4.3
24-
rxhttp_converter_version=2.4.2
22+
rxhttp_version=2.4.3
23+
rxhttp_next_version=2.4.4
24+
rxhttp_converter_version=2.4.3
2525

2626
fastjson_version=1.2.73
2727
jackson_version=2.11.1

maven_dependency.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.ljx.rxhttp</groupId>
1818
<artifactId>rxhttp</artifactId>
19-
<version>2.4.2</version>
19+
<version>2.4.3</version>
2020
</dependency>
2121

2222
<!-- 非必须 RxJava2/RxJava3 二选一或都不选 -->
@@ -48,7 +48,7 @@
4848
<path>
4949
<groupId>com.ljx.rxhttp</groupId>
5050
<artifactId>rxhttp-compiler</artifactId>
51-
<version>2.4.2</version>
51+
<version>2.4.3</version>
5252
</path>
5353
</annotationProcessorPaths>
5454

0 commit comments

Comments
 (0)