-
Notifications
You must be signed in to change notification settings - Fork 14
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 client creation * get tests running * add a few functions and tests * create new members class * try and fix client create * update to the latest version of libxmtp * get the logs fixed * get client creating working * get all the tests passing * update all the binaries * fix up some linter stuff * suppress the linter issue * supress it at a different level * try another line * use new updated codec * fix the app * add back legacy source * feat: new identity * make linter baseline * remove th lowercasing its no longer needed * remove more lowercase * fix up lint error * fix up some namespacing stuff * fix up the senderInboxId versus address * try and fix up the flaky tests * one more pass on flaky tests * another pass at fixing up the flaky tests
- Loading branch information
1 parent
f779708
commit de2f9b3
Showing
25 changed files
with
4,192 additions
and
1,912 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<issues format="6" by="lint 8.0.0" type="baseline" client="gradle" dependencies="false" name="AGP (8.0.0)" variant="all" version="8.0.0"> | ||
|
||
<issue | ||
id="NewApi" | ||
message="Call requires API level 33 (current min is 23): `java.lang.ref.Cleaner#create`" | ||
errorLine1=" val cleaner = java.lang.ref.Cleaner.create()" | ||
errorLine2=" ~~~~~~"> | ||
<location | ||
file="src/main/java/xmtpv3.kt" | ||
line="2270" | ||
column="41"/> | ||
</issue> | ||
|
||
<issue | ||
id="NewApi" | ||
message="Call requires API level 33 (current min is 23): `java.lang.ref.Cleaner#register`" | ||
errorLine1=" JavaLangRefCleanable(cleaner.register(value, cleanUpTask))" | ||
errorLine2=" ~~~~~~~~"> | ||
<location | ||
file="src/main/java/xmtpv3.kt" | ||
line="2273" | ||
column="38"/> | ||
</issue> | ||
|
||
<issue | ||
id="NewApi" | ||
message="Call requires API level 33 (current min is 23): `java.lang.ref.Cleaner.Cleanable#clean`" | ||
errorLine1=" override fun clean() = cleanable.clean()" | ||
errorLine2=" ~~~~~"> | ||
<location | ||
file="src/main/java/xmtpv3.kt" | ||
line="2279" | ||
column="38"/> | ||
</issue> | ||
|
||
<issue | ||
id="SimpleDateFormat" | ||
message="To get local formatting use `getDateInstance()`, `getDateTimeInstance()`, or `getTimeInstance()`, or use `new SimpleDateFormat(String template, Locale locale)` with for example `Locale.US` for ASCII dates." | ||
errorLine1=" val formatter = SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss 'GMT'")" | ||
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> | ||
<location | ||
file="src/main/java/org/xmtp/android/library/messages/Signature.kt" | ||
line="53" | ||
column="21"/> | ||
</issue> | ||
|
||
</issues> |
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.