Gradle 同步失败:未找到 ID 为“com.android.feature”的插件。
请帮我解决问题。我已经关注了关于即时应用程序环境设置的谷歌文档。请在此处查看设置指南:为 Instant Apps 设置环境
Gradle 同步失败:未找到 ID 为“com.android.feature”的插件。
请帮我解决问题。我已经关注了关于即时应用程序环境设置的谷歌文档。请在此处查看设置指南:为 Instant Apps 设置环境
试试这个..更改为
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
如果您使用的是稳定的 android studio
您必须在 build.gradle 文件中更新 android gradle 插件:
dependencies{
classpath 'com.android.tools.build:gradle:3.0.0-alpha4'
}
它会起作用