に私は以下のエラー循環依存がない1.1.2-3
* What went wrong:
Circular dependency between the following tasks:
:app:compileProductionDebugKotlin
\--- :app:kaptProductionDebugKotlin
\--- :app:compileProductionDebugKotlin (*)
(*) - details omitted (listed previously)
を得ました1.1.2-3)。私はkotlin-kapt
を削除すると私のアプリのbuild.gradleで
私は
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
を以下している、それが正常にコンパイルされます。
私は間違ったことをしましたか、これはKotlinのバグですか?
1.1.2-5で修正されました。 * -4で私に起こり、-3にダウングレードして解決しました。 –