Commit 1c1e2ab 1 parent ffbd2d7 commit 1c1e2ab Copy full SHA for 1c1e2ab
File tree 1 file changed +3
-1
lines changed
library/src/main/java/org/xmtp/android/library
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ import org.xmtp.proto.message.api.v1.MessageApiOuterClass.QueryRequest
44
44
import uniffi.xmtpv3.FfiXmtpClient
45
45
import uniffi.xmtpv3.LegacyIdentitySource
46
46
import uniffi.xmtpv3.createClient
47
+ import uniffi.xmtpv3.getVersionInfo
47
48
import java.io.File
48
49
import java.nio.charset.StandardCharsets
49
50
import java.security.KeyStore
@@ -81,6 +82,7 @@ class Client() {
81
82
lateinit var conversations: Conversations
82
83
var logger: XMTPLogger = XMTPLogger ()
83
84
var libXMTPClient: FfiXmtpClient ? = null
85
+ val libXMTPVersion: String = getVersionInfo()
84
86
85
87
companion object {
86
88
private const val TAG = " Client"
@@ -347,7 +349,7 @@ class Client() {
347
349
throw XMTPException (" No signer passed but signer was required." )
348
350
}
349
351
}
350
-
352
+ Log .i( TAG , " The libxmtp version is: $libXMTPVersion " )
351
353
return v3Client
352
354
}
353
355
You can’t perform that action at this time.
0 commit comments