Skip to content

Instantly share code, notes, and snippets.

@BoxResin
BoxResin / build.gradle
Last active August 15, 2017 09:53
Android DataBinding Gradle Setting for Kotlin
// build.gradle of 'app' module.
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt' // Add this line.
android {
...
dataBinding {
enabled = true
}
}
dependencies {