Hey, probably simple question:
I have an interface in my
common
module, like so:
Copy code
interface PhonebookImporter {
fun requestPermission()
fun importContacts()
}
interface SomeOtherPhonebookImporter {
fun requestPermission()
fun importContacts()
}
Android can see both interfaces 👍.
Swift however can only see PhonebookImporter via
CommonPhonebookImporter
. But SomeOtherPhonebookImporter it cannot see. Same with any new interfaces I create. None are visible in Swift.
Is there a build cache I can empty? What might cause that?