Skip to content

Commit a0a99fa

Browse files
committed
升级依赖库版本号
1 parent 4b4c149 commit a0a99fa

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

explorer/explorer-device-java/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,5 +145,5 @@ signing {
145145
}
146146
}
147147

148-
sourceCompatibility = "7"
149-
targetCompatibility = "7"
148+
sourceCompatibility = "8"
149+
targetCompatibility = "8"

hub/hub-device-android/docs/en/PRELIM__常见问题android_EN-US.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ This error is caused by the version incompatibility between the two libraries (`
4646
```
4747
dependencies {
4848
...
49-
implementation 'org.bouncycastle:bcprov-jdk15on:1.57'
50-
implementation 'org.bouncycastle:bcpkix-jdk15on:1.57'
49+
implementation 'org.bouncycastle:bcprov-jdk15on:1.65'
50+
implementation 'org.bouncycastle:bcpkix-jdk15on:1.65'
5151
implementation ('com.tencent.iot.hub:hub-device-android-core:x.x.x') {// `x.x.x` is the version number of the imported SDK
5252
exclude group: 'org.bouncycastle'
5353
}

hub/hub-device-android/docs/zh/常见问题android.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ onConnectionLost回调已断开连接(32109),表示设备已断开连接
4646
```
4747
dependencies {
4848
...
49-
implementation 'org.bouncycastle:bcprov-jdk15on:1.57'
50-
implementation 'org.bouncycastle:bcpkix-jdk15on:1.57'
49+
implementation 'org.bouncycastle:bcprov-jdk15on:1.65'
50+
implementation 'org.bouncycastle:bcpkix-jdk15on:1.65'
5151
implementation ('com.tencent.iot.hub:hub-device-android-core:x.x.x') {//x.x.x为引入sdk的版本号
5252
exclude group: 'org.bouncycastle'
5353
}

hub/hub-device-java/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ dependencies {
145145
api "org.eclipse.paho:org.eclipse.paho.client.mqttv3:${rootProject.ext.mqttJavaSdkVer}"
146146
api "com.squareup.okhttp3:okhttp:3.12.2"
147147
api 'org.json:json:20240303'
148-
api 'org.bouncycastle:bcprov-jdk15on:1.57'
149-
api 'org.bouncycastle:bcpkix-jdk15on:1.57'
148+
api 'org.bouncycastle:bcprov-jdk15on:1.65'
149+
api 'org.bouncycastle:bcpkix-jdk15on:1.65'
150150
//WebSocket
151151
api 'org.java-websocket:Java-WebSocket:1.5.2'
152152
testImplementation 'junit:junit:4.13'
@@ -158,8 +158,8 @@ signing {
158158
}
159159
}
160160

161-
sourceCompatibility = "7"
162-
targetCompatibility = "7"
161+
sourceCompatibility = "8"
162+
targetCompatibility = "8"
163163

164164
task clearLastestJavadoc(type: Delete) {
165165
doFirst {

0 commit comments

Comments
 (0)