Android: Kotlin with Butterknife
There’s no need for butterknife in Kotlin. You can directly use the following: // app:build.gradle file apply plugin: ‘com.android.application’ apply plugin: ‘kotlin-android’ apply plugin: ‘kotlin-android-extensions’ apply plugin: ‘kotlin-kapt’ android { compileSdkVersion 26 buildToolsVersion “26.0.1” defaultConfig { applicationId “com.example.nikhiljadhav.myapplication” minSdkVersion 15 targetSdkVersion 26 versionCode 1 versionName “1.0” testInstrumentationRunner “android.support.test.runner.AndroidJUnitRunner” } buildTypes { release { minifyEnabled false … Read more