Matthew Dolan
Matthew Dolan
this looks as though you are applying certificate transparency twice. by any chance are you using the new `installCertificateTransparencyProvider` - if so make sure to remove any certificate transparency OkHttp...
not currently, although it is something I have thought about. I'd assume/hope the java security provider mechanism would continue to work well for Android which would make this even easier...
Issue related to https://github.com/orbit-mvi/orbit-mvi/issues/82?
Is this an issue of configuration change? I note you are creating the ViewModel directly in the Activity in the above sample, which means rotation won't work either. Instead you...
I wonder if there's a more fundamental issue in Compose with this? As a reference: https://issuetracker.google.com/issues/200577798 https://issuetracker.google.com/issues/204522152 https://stackoverflow.com/questions/69703448/compose-text-field-strange-behaviour-when-setting-a-max-length-for-text
`blocking intent with context switch does not block the reducer` was flaky and will be ignored. To run the test repeatedly, apply the attached patch file. [Repeat_test.patch.txt](https://github.com/orbit-mvi/orbit-mvi/files/6003115/Repeat_test.patch.txt)
I hit this issue also and felt forced to use `action` and then cast the state myself... ``` fun doSomething() = action { state -> state as MyState … }...
Nothing in particular comes to mind - InterruptedException kind of implies the the coroutine block has been cancelled in some way - could be timeout? I might need to add...
One thing to look at is what you do in terms of caching the log list data (to disk for example) that could reduce the number of network hits
On reflection I think this is likely solved by #39 and given no other reports of a similar issue I'm going to close this one.