reactormonk
05/20/2025, 1:41 PMandroidx.compose.runtime.ComposeRuntimeError: Compose Runtime internal error. Unexpected or incorrect use of the Compose internal runtime API (Start/end imbalance). Please report to Google or use <https://goo.gle/compose-feedback>
), any idea as to why?
val result = try {
val encoded = it.arguments?.read { getString("encoded") }
if (encoded != null) {
val decoded = Base64.decode(encoded)
val result = Json {
ignoreUnknownKeys = true
}.decodeFromString<JakiroData>(decoded.decodeToString())
Result.success(result)
} else {
Result.failure(IllegalArgumentException("No encoded data"))
}
} catch (e: Exception) {
Result.failure(e)
}
if (result.isSuccess) {
val data = result.getOrNull()!!
Text("Contact: ${data.name} (${data.uuid})")
} else {
val err = result.exceptionOrNull()!!
Text("Error: Bad link. ${err.message}")
}
Any idea