Skip to content

Commit 63e06c2

Browse files
authored
version to 8.6.0 (#504)
1 parent 3527e75 commit 63e06c2

File tree

3 files changed

+30
-22
lines changed

3 files changed

+30
-22
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#Changelog
2+
## 8.6.0(2023-08-07)
3+
* 调整:
4+
* 调整在根据 Bucket 获取其所在区域信息时的主备域名顺序
5+
* 移除亚太-首尔区域
6+
* 修复:
7+
* 处理 v8.5.3 引用问题
8+
29
## 8.5.3(2023-06-26)
310
* 优化:
411
* 对 Dns 预解析和网络检测中的默认域名进行 Base64 处理

README.md

+22-21
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,28 @@ https://github.com/qiniudemo/qiniu-lab-android
1414
### 运行环境
1515

1616
| Qiniu SDK 版本 | 最低 Android版本 | 依赖库版本 |
17-
|------------ |-----------------|------------------------|
18-
| 8.5.x | Android 4.0+ | okhttp 4+ |
19-
| 8.4.x | Android 4.0+ | okhttp 4+ |
20-
| 8.3.2 | Android 4.0+ | okhttp 4+ |
21-
| 8.3.1 | Android 4.0+ | okhttp 4+ |
22-
| 8.3.0 | Android 5.0+ | okhttp 4+ |
23-
| 8.2.x | Android 5.0+ | okhttp 4+ |
24-
| 8.1.x | Android 5.0+ | okhttp 4+ |
25-
| 8.0.x | Android 5.0+ | okhttp 4+ |
26-
| 7.7.x | Android 5.0+ | okhttp 4+ |
27-
| 7.6.x | Android 5.0+ | okhttp 4+ |
28-
| 7.5.x | Android 5.0+ | okhttp 4+ |
29-
| 7.4.6 | Android 4.0+ | okhttp 3.12.6 |
30-
| 7.3.x | Android 2.3+ | okhttp 3.11.0 |
31-
| 7.2.x | Android 2.3+ | okhttp 3+ |
32-
| 7.1.x | Android 2.3+ | okhttp 2.6+ |
33-
| 7.0.8,7.0.9 | Android 2.2+ | android-async-http 1.4.9 |
34-
| 7.0.7 | Android 2.2+ | android-async-http 1.4.8 |
17+
|--------------|-----------------|------------------------|
18+
| 8.6.x | Android 4.0+ | okhttp 4+ |
19+
| 8.5.x | Android 4.0+ | okhttp 4+ |
20+
| 8.4.x | Android 4.0+ | okhttp 4+ |
21+
| 8.3.2 | Android 4.0+ | okhttp 4+ |
22+
| 8.3.1 | Android 4.0+ | okhttp 4+ |
23+
| 8.3.0 | Android 5.0+ | okhttp 4+ |
24+
| 8.2.x | Android 5.0+ | okhttp 4+ |
25+
| 8.1.x | Android 5.0+ | okhttp 4+ |
26+
| 8.0.x | Android 5.0+ | okhttp 4+ |
27+
| 7.7.x | Android 5.0+ | okhttp 4+ |
28+
| 7.6.x | Android 5.0+ | okhttp 4+ |
29+
| 7.5.x | Android 5.0+ | okhttp 4+ |
30+
| 7.4.6 | Android 4.0+ | okhttp 3.12.6 |
31+
| 7.3.x | Android 2.3+ | okhttp 3.11.0 |
32+
| 7.2.x | Android 2.3+ | okhttp 3+ |
33+
| 7.1.x | Android 2.3+ | okhttp 2.6+ |
34+
| 7.0.8,7.0.9 | Android 2.2+ | android-async-http 1.4.9 |
35+
| 7.0.7 | Android 2.2+ | android-async-http 1.4.8 |
3536

3637
### 注意
37-
* 推荐使用最新版:8.5.3
38+
* 推荐使用最新版:8.6.0
3839
* 7.6.2 ~ 8.3.2 AndroidNetwork.getMobileDbm()可以获取手机信号强度,需要如下权限(API>=18时生效)
3940
```
4041
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
@@ -53,10 +54,10 @@ https://github.com/qiniudemo/qiniu-lab-android
5354
* Android Studio中添加dependencies 或者 在项目中添加maven依赖
5455
```
5556
// 1. 直接导入
56-
implementation 'com.qiniu:qiniu-android-sdk:8.5.+'
57+
implementation 'com.qiniu:qiniu-android-sdk:8.6.+'
5758
5859
// 2. 如果要修改okhttp依赖的版本,可采用以下方式(强烈建议使用七牛库依赖的okhttp版本)
59-
implementation ('com.qiniu:qiniu-android-sdk:8.5.+'){
60+
implementation ('com.qiniu:qiniu-android-sdk:8.6.+'){
6061
exclude (group: 'com.squareup.okhttp3', module: 'okhttp')
6162
}
6263
implementation 'com.squareup.okhttp3:okhttp:4.9.1'

library/src/main/java/com/qiniu/android/common/Constants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
public final class Constants {
5-
public static final String VERSION = "8.5.3.1";
5+
public static final String VERSION = "8.6.0";
66

77
public static final String UTF_8 = "utf-8";
88
}

0 commit comments

Comments
 (0)