Uli Bubenheimer
Uli Bubenheimer
There also seems to be a misconception about what state hoisting means. When I hoist state, I control the state at a higher level of the composition, and the state...
Thanks. In general there is no way to guarantee that an observer will see transitory states of a MutableState, the observer only gets to see snapshot state (not events), and...
@zaheeroz You may be able to "reconstruct" drag start & end to some degree from the information that is available, but you need to take into account that you may...
@zaheeroz I don't have a link, sorry.
I seem to be having the same type of problem, with a value class wrapping `List`. Wrapping `ImmutableList` instead does not help, either. Default generated serializer. Serialization V1.3.3 and V1.4.0-RC,...
Can this issue be reopened, please? The List-wrapping inline class scenario is trivial to reproduce via Json serialization (`encodeToJsonElement`), e.g. using: @Serializable @JvmInline value class Exploring(val value: List)
The `proguard-rules.txt` file that I mentioned is incorporated in the grpc-android artifact, providing Proguard configuration for grpc-android library consumers. A good amount of grpc (OkHttp Android client) communication seems to...
I've given up on R8 full mode for now; grpc things seemed to work well for me, though, with that one added rule. I got hung up on other hard-to-debug...
I think the idea, at least in the case of `MarkerState`, is to handle any changes via `LaunchedEffect`, so that the underlying `GoogleMap` model `Marker` will not be recreated, but...
I believe this relates to https://github.com/googlemaps/android-maps-compose/issues/149 (bullet point 2). Maintaining lists of markers in the current maps-compose API is odd and complex in the general case. The API suggests hoisting...