-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* first pass at all the pieces needed for threading * a few more places * make signing key extend inboxOwner * get it decoding messages * dump the latest v3 code * write a test for creating a v3 client * use created At * write test for creating libxmtp client and confirm it works * move these change to a different branch * dont pass a conversation * fix linter * point to local not dev * feature flag the client creating of libxmtp while in alpha * change to local * fix up the test helper * feat: fix up the example app * fix up the 22 compat issue * Revert "move these change to a different branch" This reverts commit 8998d13. * try and get some tests running * setup local database * have it create correctly * write tests for functionality * test sending * send encoded content * add updates to the v3 bindings * add updates to the v3 bindings * store in a keystore * move to preferences * fix lint * Fix build issues * new libxmtp updates * dump the latest schema * update to the latest client creation flow * get the create working again * use the keystore because its more secure * fix up linter compat again * flaky test * get the tests all passing * get the example working with groups * create a group with two addresses * more tweaks to the example app to get groups working * add streaming messages to groups * a few example UI tweaks * fix the lowercasing issue in the example app * dump the schema again * implement all the conversation functionality * add new codec for membership changes * write tests for it * fix up the tests a bit' * add more tests and group streaming * get the new codec working as expected * add pagination to messages * fix up the library linting issues * fix up flaky test * fix up min sdk version issue again * update the example app * remove the saved wallet stuff from the demo * get groups working again with signer improvements and membership changes * fix linter * remove syncs so the client will need to manage * add pagination to group listing * dont return self for peers and add erroring to new group creation * update the syncing in the tests * remove all the streams work and move to another PR * remove need to lowercase * try some update ci stuff * try the warp runners again * add test on can message * another scenario to lowercase * try removing mls validation * forgot to remove it in one place * fix path * add back validation * try without warp * try warp again * why do I need colima again * try not on mac runner * dump schema and try to fix tests * try ubuntu latest * no lowercasing needed * typo * try warp build again * try the other linux one * try lower version * add linus runners * add one last try for the jni --------- Co-authored-by: Nicholas Molnar <[email protected]>
- Loading branch information
1 parent
125cc65
commit e6876ca
Showing
36 changed files
with
1,212 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
set -eou pipefail | ||
|
||
docker-compose -f dev/local/docker-compose.yml -p "xmtp-android" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
set -eou pipefail | ||
script_dir="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" | ||
|
||
"${script_dir}"/compose pull | ||
"${script_dir}"/compose up -d --build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
set -eou pipefail | ||
|
||
if [[ "${OSTYPE}" == "darwin"* ]]; then | ||
if ! which buf &>/dev/null; then brew install buf; fi | ||
if ! which shellcheck &>/dev/null; then brew install shellcheck; fi | ||
if ! which markdownlint &>/dev/null; then brew install markdownlint-cli; fi | ||
if ! java -version &>/dev/null; then | ||
brew install java | ||
sudo ln -sfn /opt/homebrew/opt/openjdk/libexec/openjdk.jdk \ | ||
/Library/Java/JavaVirtualMachines/ | ||
fi | ||
if ! kotlinc -version &>/dev/null; then brew install kotlin; fi | ||
fi | ||
|
||
rustup update | ||
|
||
dev/local/up |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.