Georgii Ippolitov

Results 6 comments of Georgii Ippolitov

@Komdosh, yes, `SharedFlow` is already a `Flow`, but a simple assignment allows casting back to the original type: ```kotlin class Repository { private val _mutableSharedFlow = MutableSharedFlow() val values: Flow...

@Komdosh, actually, looking at the implementation of `asSharedFlow()`: ```kotlin /** * Represents this mutable shared flow as a read-only shared flow. */ public fun MutableSharedFlow.asSharedFlow(): SharedFlow = ReadonlySharedFlow(this, null) ```...

@dkhalanskyjb, I've created #4541

The latest commit also doesn't guarantee stability. Without automated validation or stable release markers, how should developers identify which commits are safe to build from? I understand the concerns about...

Could you please advise where exactly I should add this flag for proper testing? Should I modify `example/ios/build.sh` and add the flags to the cmake command like this? ```bash cmake...

@levlam, it doesn't help me resolve this problem. Could you please check it and commit the necessary documentation updates and fixes to `example/ios`?