Hi guys, first of all thank you for amazing compose swift bridge library. (
https://touchlab.co/composeswiftbridge/tutorial)
I followed the tutorial, and everything works perfectly on the Android side. However, on the iOS side, when I follow the setup instructions and run the app, I get this error:
java.lang.IllegalStateException: Class not found: deserialized class ScreenRoute. This error usually means that the class is not exposed to Objective-C.
and that's my ScreenRoute interface. I am using Voyager for navigation
interface ScreenRoute : Screen, JavaSerializable
Any guide would be very helpful.
I followed singlemodule gradle setup part only so far.
If I disable skie using
skie {
isEnabled = false
}
then, ios builds successfully.