带有id' com.google.gms.google-services'的插件未找到

时间:2016-07-27 11:08:27

标签: android ionic-framework push-notification google-cloud-messaging

我第一次在我的应用程序(离子平台)中使用谷歌服务。我正在关注这个doc。在构建我的应用程序时,我收到以下错误消息。请帮忙。谢谢。

评估脚本时出现问题。

  

带有id' com.google.gms.google-services'的插件没找到。

2 个答案:

答案 0 :(得分:11)

请按照以下步骤更新您的顶级build.gradle和您的应用级build.gradle文件,将插件添加到您的项目中:

  
      
  1. 将依赖项添加到项目级build.gradle:
  2.   
classpath 'com.google.gms:google-services:3.0.0'
  
      
  1. 将插件添加到您的应用级build.gradle:
  2.   
apply plugin: 'com.google.gms.google-services'

有关此内容的更多信息,请参阅GCM - Set up a GCM Client App on Android

除此之外,GitHub中提供的指南或解决方法 - GCMPushPlugin也可能会有所帮助。

答案 1 :(得分:0)

Add   classpath com.google.gms:google-services:3.0.0  dependencies at project level build.gradle

Refer the sample block from project level build.gradle

buildscript {
    repositories {
        jcenter()
    }
    dependencies {

        classpath 'com.android.tools.build:gradle:2.3.3'
        classpath 'com.google.gms:google-services:3.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}