Maurice Wingbermuhle
10/27/2020, 1:23 PM@JvmSynthetic
to hide them from the JVM API.
I am now wondering if there is similar annotation to make methods hidden from the iOS (Objective-C) API, so I can hide the suspend method, effectively disabling the automatic conversion.streetsofboston
10/27/2020, 2:37 PMexpect
and different `actual`s. The actual
for iOS won’t have that suspend method, while the one for Android will have it.Maurice Wingbermuhle
10/27/2020, 3:45 PMdoSomething()
to doSomethingSuspended()
so that we at least get rid of the ambiguous methods in iOS. The auto-translated suspend methods are still there, but now have a different name. Downside is that the Kotlin API has the Suspended
suffix added to it everywhere.