I am encountering with an error like
Unresolved reference: kotlinx
and the import statement is like
kotlinx.android.synthetic.main.activity_main.*
The bold code goes red and I am not able to use Kotlin Android extensions.This project was working fine for the past 2 days.
Seeing the other post,I added
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
in the Project level build.gradle and
apply plugin: 'kotlin-android-extensions'
in module level but they also fail.
Android studio version : 3.0.1
Kotlin version : 1.1.51
Thanks in advance :)