Dale King
Dale King
If you have a string that has printf format specifiers like: ``` %1$s Total ``` It generates: ``` override val totalDuration = { p0: String -> "%s Total" .format(p0) }...
I tried running the XML processor on our strings and ended up getting a conflict where the generated code had variables with the same name. After some digging I discovered...
If you are in the app, go to settings and change the locale to another one that is supported the UI is not automatically recomposed so none of the strings...
KMM project using version 5.6.1 Here is an example test to show the issue: ``` @Test fun testClue() { withClue("This is the clue") { true shouldBe false } } ```...
For testing purposes one needs to set Fuel up to mock the behavior. You do provide: ``` public fun setHttpLoader(loader: HttpLoader) public fun setHttpLoader(factory: HttpLoaderFactory) ``` But those are kind...
I'm coming from MVIKotlin and like the simpler nature of Orbit. But one thing MVIKotlin did well was made it easy to add logging to the MVI store. It probably...
Since it is a SAM should be declared as a fun interface to allow using a lambda to provide an implementation.
Have a KMM project that uses Moko Resources and KSP. When I upgraded to Kotlin 1.9.0 gradle fails immediately with an error: > Cannot change attributes of dependency configuration ':myProject:iosX64CInteropApiElements'...
We have a delete call for an endpoint. So in the apI it is defined as a delete call so the key parts of the swagger are: ``` "delete" :...
When you upgrade to KTOR 2.3.4 you get deprecation warnings from your APIs with this text: > 'Input' is deprecated. We're migrating to the new kotlinx-io library. This declaration is...