'Unresolved reference...' errors for import a kotlin file from another module in android
I have problems when i import a kotlin class from another module, but there is no problem with Java class . I configed kotlin in my project. Here is 'domain' module in my case.
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
....
dependencies {
...
implementation project(':domain')
implementation 'org.jetbrains.kotlin
kotlin stdlib jdk71.2.71'
...
When I build the project, it´s giving me lot of error messages...