刚刚更新到Android Studio 3.2 Canary 17,现在收到以下错误:
配置项目':some_module`时出现问题。 'kotlin-android'希望将一个Android Gradle插件应用于该项目:
* android * com.android.application * android-library * com.android.library * com.android.test * com.android.feature * com.android.dynamic-feature
该模块的build.gradle
包括:
apply plugin: 'com.android.feature'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
该项目包括由com.android.application
,com.android.feature
和com.android.instantapp
答案 0 :(得分:2)
我认为错误来自您的即时应用模块。动态功能模块对我来说也是如此。我打开了一个问题here。
如果您查看日志,它只会影响即时/动态功能模块:
Caused by: org.gradle.api.plugins.InvalidPluginException: 'kotlin-android' expects one of the Android Gradle plugins to be applied to the project:
* android
* com.android.application
* android-library
* com.android.library
* com.android.test
* com.android.feature
* com.android.dynamic-feature <-------
并从您的日志中获取:
* android
* com.android.application
* android-library
* com.android.library
* com.android.test
* com.android.feature
* com.android.dynamic-feature <-----
我猜他们很快就会解决这个问题:-)因为这是一件大事,他。
答案 1 :(得分:0)
修正了Canary 18现在已经出局。