Android Studio 3.0.0を使い始めたばかりですが、プロジェクトをビルドしようとするたびに次のエラーが発生します。
Error:Circular dependency between the following tasks:
:app:compileDebugKotlin
+--- :app:dataBindingExportBuildInfoDebug
| \--- :app:compileDebugKotlin (*)
\--- :app:kaptDebugKotlin
\--- :app:dataBindingExportBuildInfoDebug (*)
(*) - details omitted (listed previously)
使ってます
kapt "com.android.databinding:compiler:2.2.0"
使う前に
androidProcessor "com.android.databinding:compiler:2.2.0"
そして、それはうまく機能していました...私は間違っていますか?
ありがとう!