今天打算开始撸一个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开发的小伙伴。