Skip to content

Commit 0f5c18d

Browse files
author
jordanqin
committed
update qcloud sdk to 5.6.0
1 parent cae6384 commit 0f5c18d

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

QCloudCosXml/cosext/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
minSdkVersion 19
3030
targetSdkVersion 28
3131
versionCode sdkVersionCode
32-
versionName "5.5.9"
32+
versionName "5.6.0"
3333

3434
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
3535

QCloudCosXml/cosxml-ktx/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
defaultConfig {
99
minSdkVersion 15
1010
targetSdkVersion 29
11-
versionCode 50509
12-
versionName "5.5.9"
11+
versionCode 50600
12+
versionName "5.6.0"
1313

1414
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1515
consumerProguardFiles "consumer-rules.pro"

QCloudCosXml/cosxml/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ android {
1616
minSdkVersion 15
1717
targetSdkVersion 28
1818

19-
versionCode 50509
20-
versionName "5.5.9"
19+
versionCode 50600
20+
versionName "5.6.0"
2121

2222
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
2323

QCloudCosXml/cosxml/src/main/java/com/tencent/cos/xml/BeaconService.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@
6262
*/
6363
public class BeaconService {
6464
private static final String TAG = "BeaconProxy";
65-
//联调APP Key:LOGDEBUGKEY00247
66-
// private static final String APP_KEY = "LOGDEBUGKEY00247";
6765
private static final String APP_KEY = "0AND0VEVB24UBGDU";
6866
private static final boolean IS_DEBUG = false;
6967

@@ -104,6 +102,9 @@ public static void init(Context applicationContext, CosXmlServiceConfig serviceC
104102
.bidEnable(false)
105103
.collectMACEnable(false)
106104
.collectIMEIEnable(false)
105+
.collectAndroidIdEnable(false)
106+
.collectProcessInfoEnable(false)
107+
.qmspEnable(false)
107108
.pagePathEnable(false)
108109
.setNormalPollingTime(5000)
109110
.build();
@@ -375,6 +376,7 @@ private Map<String, String> getCommonParams() {
375376
private ReturnServiceException getServiceExceptionParams(QCloudServiceException e) {
376377
Map<String, String> params = new HashMap<>();
377378
CosXmlServiceException serviceException = convertServerException(e);
379+
params.put("error_request_id", serviceException.getRequestId());
378380
params.put("error_message", serviceException.getErrorMessage());
379381
params.put("error_code", serviceException.getErrorCode());
380382
params.put("error_status_code", String.valueOf(serviceException.getStatusCode()));

QCloudCosXml/logUtils/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
minSdkVersion 15
99
targetSdkVersion 27
1010
versionCode sdkVersionCode
11-
versionName "5.5.9"
11+
versionName "5.6.0"
1212

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

0 commit comments

Comments
 (0)