<@U1DJE05QR> I had the same issue not two days ago...
# android
j
@rakshakhegde I had the same issue not two days ago. The trick is to copy the following block to your module gradle script (but don’t remove it from the top project file)
Copy code
// for some reason this kotlin-android-extensions dependency needs to be in a module specific build.gradle to work!
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
    }
}