Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created September 5, 2021 07:41
Embed
What would you like to do?
How to Use View Binding with Kotlin - 1
plugins {
id 'com.android.application'
}
android {
compileSdk 31
/* 省略 */
targetCompatibility JavaVersion.VERSION_1_8
}
viewBinding {
enabled = true
}
}
dependencies {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment