Je viens de commencer à utiliser Android Studio 3.0.0, mais chaque fois que j'essaie de construire mon projet, j'obtiens cette erreur :
Error:Circular dependency between the following tasks:
:app:compileDebugKotlin
+--- :app:dataBindingExportBuildInfoDebug
| \--- :app:compileDebugKotlin (*)
\--- :app:kaptDebugKotlin
\--- :app:dataBindingExportBuildInfoDebug (*)
(*) - details omitted (listed previously)
J'utilise
kapt "com.android.databinding:compiler:2.2.0"
Avant, j'utilisais
androidProcessor "com.android.databinding:compiler:2.2.0"
Et ça marchait très bien... Qu'est-ce que je fais de mal ?
Merci !
1 votes
On dirait un bug, un problème créé : youtrack.jetbrains.com/issue/KT-17936
0 votes
Ce bogue apparaît même sans liaison de données. Il suffit d'utiliser la version 1.1.2-4 de kotlin et d'appliquer le plugin : 'kotlin-kapt'. Vous obtiendrez alors cette erreur Error:Circular dependency between the following tasks : :app:compileDebugKotlin \--- :app:kaptDebugKotlin \--- :app:compileDebugKotlin ( ) ( ) - détails omis (listés précédemment)
0 votes
Question également liée : issuetracker.google.com/issues/38471980