Skip to content

Commit b4c06e0

Browse files
author
jordanqin
committed
update qcloud sdk to 5.9.25
1 parent 7f69934 commit b4c06e0

20 files changed

+44
-16
lines changed

QCloudCosXml/cos-android-base/build.gradle

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
minSdkVersion 15
77
targetSdkVersion 28
88

9-
versionCode 50922
10-
versionName '5.9.22'
9+
versionCode 50923
10+
versionName '5.9.23'
1111

1212
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
1313

@@ -70,13 +70,6 @@ dependencies {
7070

7171
api project(':foundation')
7272
api project(':qcloud-track')
73-
74-
compileOnly files(
75-
'libs/beacon-android-release-4.2.80.6-official.aar',
76-
'libs/qimei-1.2.13.1.aar',
77-
'libs/qimei-core-1.2.13.1-normal.aar',
78-
'libs/qmsp-oaid2-1.0.4.aar'
79-
)
8073
}
8174

8275
project.extensions.add('artifactId', 'qcloud-cos-android-base')
Binary file not shown.
-1.15 KB
Binary file not shown.
Binary file not shown.
-54.5 KB
Binary file not shown.

QCloudCosXml/cos-android-base/src/main/java/com/tencent/cos/xml/model/CosXmlRequest.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,15 @@ public void addNoSignHeader(String key) {
189189
}
190190
}
191191

192+
/**
193+
* 添加不强制签名的header键
194+
*/
195+
public void addNoSignHeader(Set<String> keys) {
196+
if (keys != null) {
197+
noSignHeaders.addAll(keys);
198+
}
199+
}
200+
192201
public void addNoSignParams(String key) {
193202
if (!TextUtils.isEmpty(key)) {
194203
noSignParams.add(key);

QCloudCosXml/cos-android/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ android {
8989
}
9090

9191
// 切换发 normal 或者 slim 包,需要同步修改 pom.artifactId 信息
92-
// defaultPublishConfig "normalRelease"
93-
defaultPublishConfig "slimRelease"
92+
defaultPublishConfig "normalRelease"
93+
// defaultPublishConfig "slimRelease"
9494

9595
compileOptions {
9696
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -161,9 +161,9 @@ dependencies {
161161
api project(':cos-android-base')
162162
api project(':qcloud-track')
163163
if(includeBeacon){
164-
embed(name: 'beacon-android-release-4.2.80.6-official', ext: 'aar')
165-
embed(name: 'qimei-1.2.13.1', ext: 'aar')
166-
embed(name: 'qimei-core-1.2.13.1-normal', ext: 'aar')
164+
embed(name: 'beacon-android-release-4.2.86.7-hf1-official', ext: 'aar')
165+
embed(name: 'qimei-1.2.18.3', ext: 'aar')
166+
embed(name: 'qimei-core-1.2.18.3-normal', ext: 'aar')
167167
embed(name: 'qmsp-oaid2-1.0.4', ext: 'aar')
168168
}
169169

Binary file not shown.
Binary file not shown.
-1.15 KB
Binary file not shown.

0 commit comments

Comments
 (0)