Skip to content

Commit

Permalink
bump to the latest xmtp
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Feb 5, 2024
1 parent 7c19821 commit 80b1a09
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions library/src/main/java/xmtpv3.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3253,7 +3253,7 @@ public object FfiConverterSequenceBoolean: FfiConverterRustBuffer<List<Boolean>>

override fun write(value: List<Boolean>, buf: ByteBuffer) {
buf.putInt(value.size)
value.iterator().forEach {
value.forEach {
FfiConverterBoolean.write(it, buf)
}
}
Expand All @@ -3278,7 +3278,7 @@ public object FfiConverterSequenceString: FfiConverterRustBuffer<List<String>> {

override fun write(value: List<String>, buf: ByteBuffer) {
buf.putInt(value.size)
value.iterator().forEach {
value.forEach {
FfiConverterString.write(it, buf)
}
}
Expand All @@ -3303,7 +3303,7 @@ public object FfiConverterSequenceByteArray: FfiConverterRustBuffer<List<ByteArr

override fun write(value: List<ByteArray>, buf: ByteBuffer) {
buf.putInt(value.size)
value.iterator().forEach {
value.forEach {
FfiConverterByteArray.write(it, buf)
}
}
Expand All @@ -3328,7 +3328,7 @@ public object FfiConverterSequenceTypeFfiGroup: FfiConverterRustBuffer<List<FfiG

override fun write(value: List<FfiGroup>, buf: ByteBuffer) {
buf.putInt(value.size)
value.iterator().forEach {
value.forEach {
FfiConverterTypeFfiGroup.write(it, buf)
}
}
Expand All @@ -3353,7 +3353,7 @@ public object FfiConverterSequenceTypeFfiEnvelope: FfiConverterRustBuffer<List<F

override fun write(value: List<FfiEnvelope>, buf: ByteBuffer) {
buf.putInt(value.size)
value.iterator().forEach {
value.forEach {
FfiConverterTypeFfiEnvelope.write(it, buf)
}
}
Expand All @@ -3378,7 +3378,7 @@ public object FfiConverterSequenceTypeFfiGroupMember: FfiConverterRustBuffer<Lis

override fun write(value: List<FfiGroupMember>, buf: ByteBuffer) {
buf.putInt(value.size)
value.iterator().forEach {
value.forEach {
FfiConverterTypeFfiGroupMember.write(it, buf)
}
}
Expand All @@ -3403,7 +3403,7 @@ public object FfiConverterSequenceTypeFfiMessage: FfiConverterRustBuffer<List<Ff

override fun write(value: List<FfiMessage>, buf: ByteBuffer) {
buf.putInt(value.size)
value.iterator().forEach {
value.forEach {
FfiConverterTypeFfiMessage.write(it, buf)
}
}
Expand All @@ -3428,7 +3428,7 @@ public object FfiConverterSequenceTypeFfiV2QueryRequest: FfiConverterRustBuffer<

override fun write(value: List<FfiV2QueryRequest>, buf: ByteBuffer) {
buf.putInt(value.size)
value.iterator().forEach {
value.forEach {
FfiConverterTypeFfiV2QueryRequest.write(it, buf)
}
}
Expand All @@ -3453,7 +3453,7 @@ public object FfiConverterSequenceTypeFfiV2QueryResponse: FfiConverterRustBuffer

override fun write(value: List<FfiV2QueryResponse>, buf: ByteBuffer) {
buf.putInt(value.size)
value.iterator().forEach {
value.forEach {
FfiConverterTypeFfiV2QueryResponse.write(it, buf)
}
}
Expand Down
Binary file modified library/src/main/jniLibs/arm64-v8a/libuniffi_xmtpv3.so
Binary file not shown.
Binary file modified library/src/main/jniLibs/armeabi-v7a/libuniffi_xmtpv3.so
Binary file not shown.
Binary file modified library/src/main/jniLibs/x86/libuniffi_xmtpv3.so
Binary file not shown.
Binary file modified library/src/main/jniLibs/x86_64/libuniffi_xmtpv3.so
Binary file not shown.

0 comments on commit 80b1a09

Please sign in to comment.