其他分享
首页 > 其他分享> > Android&Kotlin笔记——Gradle DSL method not found: 'kapt()'

Android&Kotlin笔记——Gradle DSL method not found: 'kapt()'

作者:互联网

今天打算开始撸一个Kotlin语言开发的Android应用,在创建项目之后出现了Gradle DSL method not found: 'kapt()'Possible causes: The project 'KotlinOne' may be using a version of the Android Gradle plug-in that does not contain the method (e.g. 'testCompile' was added in 1.1.0).

遇到这个不要慌,只要在build.gradle文件中插件语句就可以了:

apply plugin: 'kotlin-kapt'

虽然很简单,但是记录一下,希望可以帮到使用Kotlin开发的小伙伴。

标签:kapt,Kotlin,Gradle,DSL,Android,method
来源: https://blog.csdn.net/chengxu_kuangrexintu/article/details/100835532