I have a strange issue in *1.0.2*… Kotlin interfac...
# announcements
p
I have a strange issue in *1.0.2*… Kotlin interface reference cannot be resolved from another module 🤔 while Java interface can… in Java:
Copy code
public interface SyncInteractorJava {

    void setDuringSync(boolean duringSync);
}
in Kotlin:
Copy code
interface SyncInteractor {

    fun setDuringSync(duringSync: Boolean)
}
and I receive: Unresolved reference: SyncInteractor