我想将我的 json 字符串响应从 API 转换为对象:
val obj = Json.decodeFromString<MyModel>(jsonResponseString)
我的数据类:
@Serializable
data class MyModel(
@SerializedName("field") val field: String
)
它看起来很简单,它可以在调试模式下工作!
但是,当编译 AppBundle,以发布模式构建并从 Play Store 内部测试下载应用程序时,我收到以下错误:
Serializer for class '...' is not found. Mark the class as @serializable or provide the
serializer explicitly.
kotlinx.serialization.internal.Platform_commonKt.serializerNotRegistered