Osip Fatkullin
Osip Fatkullin
Just to add a bit of context that may help to decide whether these rules should be added or not, here is the issue discussing problems of `runCatching` https://github.com/Kotlin/kotlinx.coroutines/issues/1814 Brief...
Possible workaround is to use `invocationTimeout` instead of `timeout`. Difference I found between these options is that `invocationTimeout` applies timeout only to tests, not to test containers.
I see no any objections so I merge this PR
@praveenathuru, thank you for the report. Is it full stacktrace? Are there more causes?
There are many reasons why the library can't decrypt master key, but firstly I'd suggest updating [tink](https://github.com/tink-crypto/tink-java/) (the cryptographic library used under the hood) to the latest version: ```kotlin dependencies...
Found workaround - convert OpenAPI 3.0 to Swagger 2.0: https://github.com/LucyBot-Inc/api-spec-converter This issue should be linked with #39
@IlyaGulya, sure, feel free to work on it! I've rebased the branch onto the fresh master and fixed review comments. If you want to continue work in this branch, let...
Great! I have the following questions: - Should it be implemented only for new Klib format? - It will be a breaking change so should it be done before Klib...
Is there any workaround for this case? For example disable vertical scroll if content fits to screen. But how to detect "if content fits"?
This workaround works for me: ```kotlin @Composable public fun CollapsingToolbarScaffold( state: CollapsingToolbarScaffoldState, modifier: Modifier = Modifier, scrollStrategy: ScrollStrategy = ScrollStrategy.ExitUntilCollapsed, enabled: Boolean = true, toolbarModifier: Modifier = Modifier, toolbar: @Composable...