Takahiro Menju

Results 569 comments of Takahiro Menju

@bingningO Could you share the stacktrace as I'm not sure what problem you saw?🙇

I couldn't reproduce the issue. There may be a condition that causes this issue to occur. 👀 https://github.com/DroidKaigi/conference-app-2024/pull/1037

Thank you. I still don't understand the problem. * Versions 1.7.2 and 1.7.3 use `kotlin/uuid/Uuid`, which was introduced in Kotlin 2.0.20. * Version 1.7.3 seems to ignore the error as...

Is the BuildScript dependency something like this? * KotlinX serialization runtime 1.6.3, which doesn't catch the problem. * KotlinX serialization plugin 1.7.3, which generates the Uuid. * Kotlin 1.9, which...

I was able to reproduce the issue by adding 1.7.2 buildscript dependency but I was able to fix it by updating it to 1.7.3. ```kotlin buildscript { dependencies { classpath(libs.kotlinSerializationJson)...

Roborazzi can update kotlinx serialization to 1.7.3, but it forces users to update to Kotlin 2.x or higher.

I would like to know if there are patterns where users can't fix the problem even after updating Kotlinx Serialization to version 1.7.3. If it is just a 1.7.2 problem,...

@trevjonez Thanks. Does that happen even if you use version 1.7.3? Could you provide the output of `./gradlew buildEnvironment` related to Kotlinx.Serialization?

Even if we update Kotlinx.Serialization to version 1.7.3 in the Roborazzi Gradle Plugin, the Kotlin runtime version might not change. I believe this is why the issue has occurred: the...