will be short
if you get any error like this
(45, 17): Unresolved reference: id
Step 1:
add this
id 'kotlin-android-extensions'
in the build.gradle file, like this
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-android-extensions'
id 'com.google.gms.google-services'
}
Step 2:
and import the R module in kotlin file where you have got the problem. For example, I got this problem in AdUtils.kt then I added it like this.
import com.example.app.R
then to Build>Clean and Rebuild