Amr Yousef

Results 19 comments of Amr Yousef

We only needed XCFramework so we started with that. Bascailly what we did is: - Added a new template for `Package.swift` - Replicated the setup tasks to use prepare `Package.swift`...

Yes there is enough items in the adapter. I can see them all loaded. I assumed it's the NestedScrollView as the scrollbar for it shows instead of the alphabetical scrollbar....

I've just tested the demo app on Android 10 and didn't come access the issue. Is it always happening on Android 10 or does it happen intermittently? Also when you...

Yeah I just tested exactly this and it worked. My only point about checking to see if the chrome custom tab still open before finishing the sign-in in the actual...

> rewrite should be done as a separate project I get the point but no necessarily agree. We can use a different branch as a new develop or master for...

Getting the same issue on Robolectric 4.1, @JustinTullgren suggested solution works.

It doesn't throw if you change the rule from being `createAndroidComposeRule()` to `createAndroidComposeRule()`. Here's a project that reproduces the issue https://github.com/amrfarid140/googlemapscompose-issue-reporducer. It has 2 tests. - `TestWithIssue` throws the error....

Not sure if anyone is looking into this yet but something interesting I found was when the test fails. The call to [disposingComposition](https://github.com/googlemaps/android-maps-compose/blob/main/maps-compose/src/main/java/com/google/maps/android/compose/GoogleMap.kt#L146) changes threads at the point of calling...

The workaround I have so far is to finish the activity/activities as part of the test instead of waiting for the test to tear down.

For anyone seeing this issue, here's what I've found and how I fixed it. TL;DR: Store any data you are accessing in `useState` and perform any mutations on it from...