Gradle DSL method not found: 'kapt()'

后端 未结 7 1349
暖寄归人
暖寄归人 2020-12-14 05:15

Gradle DSL method not found: \'kapt()\' Possible causes: The project \'jetpacklearn\' may be using a version of the Android Gradle plug-in that does not contain the method (

7条回答
  •  醉话见心
    2020-12-14 05:48

    just add this line in your app-level of build.grale :

    apply plugin: 'kotlin-kapt'
    

    NOTE: under apply plugin: 'com.android.application'

提交回复
热议问题