Mugurell

Results 124 comments of Mugurell

Thank you for looking into this @dkhalanskyjb ! Continuing from the example from https://github.com/Kotlin/kotlinx.coroutines/issues/3246#issuecomment-1119345128 with one remark: everything is Kotlin used for and Android app. > Our app uses MVI...

We were thinking about the unconfined nature of the appropriately named dispatcher.. If because of a previous coroutine a next one starts and runs on a different thread But we...

We do have some threads "manually" created. For the most common scenarios we can access it / the `CoroutineScope` using a `ExecutorService.asCoroutineDispatcher` and `join` that from the test but just...

We have to use [in many places](https://github.com/mozilla-mobile/android-components/search?q=store.waitUntilIdle%28%29) (not all appearing in the Github query) our custom `waitUntilIdle` method [which will join](https://github.com/mozilla-mobile/android-components/blob/6c0fe91ab83614265f533b819bf406fc046b2227/components/support/test-libstate/src/main/java/mozilla/components/support/test/libstate/ext/Store.kt) all children coroutines [launched](https://github.com/mozilla-mobile/android-components/blob/6c0fe91ab83614265f533b819bf406fc046b2227/components/lib/state/src/main/java/mozilla/components/lib/state/Store.kt#L92) for every event in the...

@badboy Probably because of this ^^ update unit tests using Robolectric on Focus and Fenix are now failing with the same stacktrace on Intel based Macs.

Opened https://github.com/mozilla-mobile/fenix/issues/24765 with more details.

Having looked more at this I think the cooperative nature of the [NestedScrollingChild](https://developer.android.com/reference/androidx/core/view/NestedScrollingChild) Android contract will pose significant challenges but I’m fairly sure we can avoid that for at least...

Tried looking at how Chrome handles this scenarios and while not having a complete pictyure it seems that: - the dynamic toolbar seems to function similar to Fennec's toolbar -...

> Note: This is also reproducible in Fenix Would the fix then be in GeckoView / A-C?