I declared interface in KMM library:
interface Foo { fun foo() {} }
And class in KMM app in common part:
class Bar: Foo{ }
And when try create Foo object in android part i got an error like a:
e: Supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath:
class Bar, unresolved supertypes: Foo
Is it possible use interfaces like above?