I just started to use Android Studio 3.0.0, but every time I try to build my project I get this error:
Error:Circular dependency between the following tasks:
I have recenly write Blog for Data Binding android with Kotlin here
Use Classpath
classpath 'com.android.tools.build:gradle:3.0.0-beta2'
Dependency
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
...
dataBinding {
enabled = true
}
}
dependencies {
......
kapt 'com.android.databinding:compiler:2.3.1'
}
for more detail check out this post