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
When a public type or method cannot be bridged from Swift to Kotlin, the skipstone plugin will fail with an error. For packages that might have a large portion of public API that isn't expected it be bridgable, it can be cumbersome to annotate these all with // SKIP @nobridge.
We could have a skip.yml option called unbridgable that accepts fail (the default), warn, and ignore. The latter two would avoid attempting to create a bridge to a type or method that isn't bridgeable.
The text was updated successfully, but these errors were encountered:
When a public type or method cannot be bridged from Swift to Kotlin, the skipstone plugin will fail with an error. For packages that might have a large portion of public API that isn't expected it be bridgable, it can be cumbersome to annotate these all with
// SKIP @nobridge
.We could have a
skip.yml
option calledunbridgable
that acceptsfail
(the default),warn
, andignore
. The latter two would avoid attempting to create a bridge to a type or method that isn't bridgeable.The text was updated successfully, but these errors were encountered: