我收到以下错误
* What went wrong:
Circular dependency between the following tasks:
:app:compileProductionDebugKotlin
\--- :app:kaptProductionDebugKotlin
\--- :app:compileProductionDebugKotlin (*)
(*) - details omitted (listed previously)
当我使用Kotlin版本1.1.2-4时(当我使用1.1.2-3时没关系。)
在我的app build.gradle中,我有以下
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
当我删除kotlin-kapt
时,它编译得很好。
我做错了什么,或者这是Kotlin的错误?
答案 0 :(得分:1)
当转到Kotlin版本1.1.2-5时,测试运行良好。谢谢@AntonKazakov!