Max
04/10/2024, 4:52 PMcommon
module, like so:
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?