Kotlin Android Extensions is an important Kotlin plugin that is similar to Butterknife. It will allow to recover views in android. Implementation Add the following plugins in your app level build.gradle file apply plugin:'com.android.application' apply plugin:'kotlin-android' apply plugin:'kotlin-android-extensions' Coding Part Create a new layout file in res folder, name it as activity_main.xml and paste the following codes <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical" tools:context="com.androidmads.kotlinsample_helloworld.MainActivity"...