Tony Trinh

Results 75 comments of Tony Trinh

Checkout the examples at https://github.com/sapphi-red/vite-setup-catalogue

Notes on permission usage: * Apps that use `MANAGE_EXTERNAL_STORAGE` are only blocked from the Play store [if they don't meet the requirements for that permission](https://support.google.com/googleplay/android-developer/answer/10467955?hl=en). * `MANAGE_DOCUMENTS` [can only be...

It sounds like there are two issues here: 1. You want to write logs to shared storage on Android 11, and you're trying the `Documents` folder, which is normally not...

I examined the code indicated in the stack trace, but nothing obvious stood out to me. To help troubleshoot, can you provide the following? * the app source that shows...

Looking into issue. The solution from RxJava2Debug doesn't seem to apply in our case, since our `Throwable` is passed in. I think we'll just have to`try-catch` the call, or skip...

I'm not able to reproduce the bug in the emulator, so I can't test the fix. Do you have a way to reproduce this?

@mlostekk That is indeed ideal, but I've been busy with other projects. PRs welcome :)

To be consistent with `FileAppender`, which changes the relative path to absolute, I think the path fix should be in `RollingFileAppender` (instead of the `RollingPolicy`). Note the [wiki](https://github.com/tony19/logback-android/wiki/Appender-Notes#fileappender-rollingfileappender) currently indicates...

@gauravdott, Indeed, the lazy flag was unintentionally removed during a merge from the main logback project that completely rewrote the `SocketAppender`. I started to restore that feature in a [branch](https://github.com/tony19/logback-android/tree/socket-appender-lazy-flag)....

A possible workaround is to use `AsyncAppender` as seen with this [`SocketAppender` example](https://github.com/tony19/logback-android/wiki/Appender-Notes#socketappender-syslogappender). Let me know if that helps.