找不到ID为'com.android.feature'的插件

时间:2017-10-31 13:56:12

标签: android android-instant-apps

使用this codelab tutorial将现有应用转换为即时应用时遇到此错误。

Plugin with id 'com.android.feature' not found.

我已经检查过我在Android Studio 3.0上有即时应用开发SDK

enter image description here

有人能指出我在这里失踪的东西吗?

1 个答案:

答案 0 :(得分:2)

我找到了解决方案: -

我必须在Project&#39的build.gradle下添加 google()存储库

  allprojects {
    repositories {
        google()
        jcenter()
    }
}

之后我收到了这个错误: - enter image description here 解决我必须遵循的第一个建议" 将插件版本升级到3.0.0-beta7并同步项目"

接下来我就此了解: - enter image description here 我按照建议遵循并成功重建我的项目:)

快乐的编码!