Matthew Nelson
Matthew Nelson
That is Java. If you were to create a Java desktop app, that could work, sure
Yeah, the dashboard sorting is done the same way as iOS; by the time of the last message received for that chat and in the case of a new contact...
ah ok. We could just use an `inserted_at` field in the Contact Table. The `upsertContact` query will not modify that field when updated, only on insertion. We could then use...
Instead of uninstalling, you can clear the app data from Android Settings for the app - Long press the App from the launcher icon - click the "I" (info) -...
Think about adding a static `EncoderDecoder` configured specifically for this, too. ```kotlin public class Base64( config: Base64.Config ) : EncoderDecoder(config) { // ... public object Default { @JvmField public val...
Actually, this could be implemented in `core` by adding another constructor with the new parameter (and deprecating the prior constructor), then handled in the `Decoder.Feed` abstraction. I think the parameter...
I actually don't think this is necessary, as `transitive` will only provide readability of `core`, not accessibility. Users of `encoding` will still have to declare `requires io.matthewnelson.encoding.core;`
> Could you provide an update to support this? Features on all my libraries are kind of frozen. I am very busy with [kmp-tor](https://github.com/05nelsonm/kmp-tor) `2.0.0`. Feel free to use the...
Not implementing
I'd love to actively work on this asap, but atm I am slammed. PR's are always welcome!