Skip to content

Commit 77b2531

Browse files
author
jordanqin
committed
update qcloud sdk to 1.5.25
1 parent cd213f7 commit 77b2531

File tree

13 files changed

+1258
-1151
lines changed

13 files changed

+1258
-1151
lines changed
Binary file not shown.

QCloudFoundation/.idea/compiler.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QCloudFoundation/.idea/gradle.xml

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QCloudFoundation/.idea/jarRepositories.xml

Lines changed: 40 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QCloudFoundation/.idea/misc.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QCloudFoundation/.idea/modules.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QCloudFoundation/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QCloudFoundation/foundation/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
minSdkVersion 15
88
targetSdkVersion 27
99

10-
versionCode 10524
11-
versionName "1.5.24"
10+
versionCode 10525
11+
versionName "1.5.25"
1212

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

QCloudFoundation/foundation/src/main/java/com/tencent/qcloud/core/auth/BasicLifecycleCredentialProvider.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ public void refresh() throws QCloudClientException {
7272
if (e instanceof QCloudClientException) {
7373
throw e;
7474
}
75-
throw new QCloudClientException("fetch credentials error happens", new QCloudAuthenticationException(e.getMessage()));
75+
throw new QCloudClientException("fetch credentials error happens: " + e.getMessage(),
76+
new QCloudAuthenticationException(e.getMessage()));
7677
}
7778
}
7879
} catch (InterruptedException e) {

0 commit comments

Comments
 (0)