使用kotlin+dagger2 报错kaptDebugKotlin解决

报错如下:


1、首先需要在module工程中添加

applyplugin:'kotlin-kapt'

org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version

然后把dagger-compiler的annotationProcessor改为kapt

2、如果还是有报错  那么需要查看详情 双击 See complete output in console 跳到控制台如下图:



点击截图中的Run with --info 或者 --debug option 

随后会显示编译后错误,然后根据错误提示   可能没有报错,但是错误提示已经显示出错误, 根据提示修改代码,然后在运行即可。

你可能感兴趣的:(使用kotlin+dagger2 报错kaptDebugKotlin解决)