Aleksey Mikhailov

Results 357 comments of Aleksey Mikhailov

@ovitrif it will be great if you submit PR :) thanks

hi. it's gradle 8 strict validations. read https://docs.gradle.org/8.0/userguide/validation_problems.html#implicit_dependency you should add dependencies between gradle task like: ``` tasks.getByName("kspKotlinIosSimulatorArm64") .dependsOn(tasks.getByName("generateMRiosSimulatorArm64Main")) ``` for all tasks that gradle report in errors

Maybe calls executed on different threads and with @ThreadLocal annotation we got different localeTypes https://github.com/icerockdev/moko-resources/blob/c7e3ec78838308aaf9079496a080a12a1adff938/resources/src/appleMain/kotlin/dev/icerock/moko/resources/desc/StringDesc.kt#L62 this should be checked...

@ubuntudroid fix from commit that you link works not only for strings, it works for all resources directory changes. when you change images you should got changed `contentHash` value and...

Check please what contentHash value generated after images changes and also describe what exactly changes you mean? New files or change of files content?

hi! StringDesc is interface, so you can create own `ResourceFormattedStringDesc` implementation of `StringDesc` that will be `Parcelable`.

hi. i try add `UserDefaults.standard.set("sk", forKey: "AppleLanguages")` to `samples/resources-gallery` and not see any crashes. can you show log?

what kotlin and moko-resources versions you use?

hi. in sample you can check tests with different locales. https://github.com/icerockdev/moko-resources/blob/master/samples/resources-gallery/mpp-library/src/commonTest/kotlin/com/icerock/library/StringResourceEnTests.kt it works base on https://github.com/icerockdev/moko-resources/blob/beb3fb29dc78d4c75109ce94a1aab3abb38dae5c/resources/src/commonMain/kotlin/dev/icerock/moko/resources/desc/StringDesc.kt#L29 also you can use same way as you do in sample code - moko-resources...