-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create LibXMTP Client - android #231
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is looking really good just a few small comments
return runBlocking { | ||
signLegacy(message).toByteArray() | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤔 I wonder if this will work for sure worth trying but I almost think that would just give me the bytearray of the signature object
When I think we want something more like this
https://github.com/xmtp/xmtp-android/pull/156/files#diff-2be5e4bd7739dcb1debb7023943ee5544ebef6355405115cf89aa0e0a3ee09edR97-R102
Maybe this would do to get the bytes out of the signature 🤔
return runBlocking { | |
signLegacy(message).toByteArray() | |
} | |
return runBlocking { | |
signLegacy(message).ecdsaCompact.bytes.toByteArray() | |
} |
android/src/main/java/expo/modules/xmtpreactnativesdk/XMTPModule.kt
Outdated
Show resolved
Hide resolved
android/src/main/java/expo/modules/xmtpreactnativesdk/XMTPModule.kt
Outdated
Show resolved
Hide resolved
🎉 This PR is included in version 1.27.0-beta.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 1.28.0-beta.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 1.30.0-beta.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 1.31.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
See #213
This change includes basic group chat functionality on Android: