Skip to content

Commit 232c061

Browse files
fix Android
1 parent a8f5bf5 commit 232c061

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

examples/android-chatter/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ android {
3333
exclude 'META-INF/license/LICENSE.mvn-wrapper.txt'
3434
exclude 'META-INF/license/LICENSE.quiche.txt'
3535
exclude 'META-INF/license/LICENSE.tomcat-native.txt'
36+
exclude 'META-INF/license/LICENSE.jbzip2.txt'
3637
}
3738
kotlinOptions {
3839
jvmTarget = "11"

libp2p/src/main/kotlin/io/libp2p/transport/quic/QuicTransport.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ class QuicTransport(
295295
val javaPrivateKey = getJavaKey(connectionKeys.first)
296296
val isClient = expectedRemotePeerId != null
297297
val cert = buildCert(localKey, connectionKeys.first)
298-
logger.info("Building {} keys and cert for peer {}", certAlgorithm, PeerId.fromPubKey(localKey.publicKey()))
298+
logger.info("Building {} keys and cert for peer id {}", certAlgorithm, PeerId.fromPubKey(localKey.publicKey()))
299299
return (
300300
if (isClient) {
301301
QuicSslContextBuilder.forClient().keyManager(javaPrivateKey, null, cert)

0 commit comments

Comments
 (0)