File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
library/src/main/java/com/qiniu/android/common Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11#Changelog
2+ ## 8.2.0(2021-01-18)
3+ * 区域查询采用SingleFlight模式
4+ * 增加网络链接状态检测
5+
26## 8.1.1 (2021-01-06)
37* 优化日志统计
48
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ https://github.com/qiniudemo/qiniu-lab-android
1515
1616| Qiniu SDK 版本 | 最低 Android版本 | 依赖库版本 |
1717| ------------ | -----------------| ------------------------|
18+ | 8.2.x | Android 5.0+ | okhttp 4+ |
1819| 8.1.x | Android 5.0+ | okhttp 4+ |
1920| 8.0.x | Android 5.0+ | okhttp 4+ |
2021| 7.7.x | Android 5.0+ | okhttp 4+ |
@@ -28,7 +29,7 @@ https://github.com/qiniudemo/qiniu-lab-android
2829| 7.0.7 | Android 2.2+ | android-async-http 1.4.8 |
2930
3031### 注意
31- * 推荐使用最新版:8.1.1
32+ * 推荐使用最新版:8.2.0
3233* AndroidNetwork.getMobileDbm()可以获取手机信号强度,需要如下权限(API>=18时生效)
3334```
3435 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
@@ -46,10 +47,10 @@ https://github.com/qiniudemo/qiniu-lab-android
4647* Android Studio中添加dependencies 或者 在项目中添加maven依赖
4748```
4849// 1. 直接导入
49- implementation 'com.qiniu:qiniu-android-sdk:8.1 .+'
50+ implementation 'com.qiniu:qiniu-android-sdk:8.2 .+'
5051
5152// 2. 如果要修改okhttp依赖的版本,可采用以下方式(强烈建议使用七牛库依赖的okhttp版本)
52- implementation ('com.qiniu:qiniu-android-sdk:8.1 .+'){
53+ implementation ('com.qiniu:qiniu-android-sdk:8.2 .+'){
5354 exclude (group: 'com.squareup.okhttp3', module: 'okhttp')
5455}
5556implementation 'com.squareup.okhttp3:okhttp:4.2.2'
Original file line number Diff line number Diff line change 22
33
44public final class Constants {
5- public static final String VERSION = "8.1.1 " ;
5+ public static final String VERSION = "8.2.0 " ;
66
77 public static final String UTF_8 = "utf-8" ;
88}
You can’t perform that action at this time.
0 commit comments