You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(bindings): rename ShoppingListError field to avoid Kotlin Exception clash
UniFFI maps Error enums to subclasses of kotlin.Exception, which already
has a 'message: String?' property. A variant field named 'message' was
generated as a conflicting declaration, causing Kotlin compilation to
fail during Android packaging.
Rename the field to 'reason' so UniFFI generates a proper override of
Exception.message as a getter.
0 commit comments