Using viewBinding in Android
In the app/build.gradle. Add this line inside the android{} block.
android {
buildFeatures {
viewBinding true
}
//other lines
}
class MyActivity: AppcompactActivity(){
//This is a new thing. I want to know about it.
}
codekotlin.com1 min read