2

Gradle 同步失败:未找到 ID 为“com.android.feature”的插件。

请帮我解决问题。我已经关注了关于即时应用程序环境设置的谷歌文档。请在此处查看设置指南:为 Instant Apps 设置环境

4

2 回答 2

0

试试这个..更改为

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

于 2017-09-20T14:47:34.237 回答
0

您必须在 build.gradle 文件中更新 android gradle 插件:

dependencies{
        classpath 'com.android.tools.build:gradle:3.0.0-alpha4'
}

它会起作用

于 2017-06-29T14:44:01.607 回答