小编典典

错误“模块根文件夹中缺少文件 google-services.json。没有它,Google 服务插件无法运行”

all

我将我的项目更新为最新的 Play services classpath 'com.google.gms:google- services:1.5.0-beta2'。我还在我的 app.gradle 文件中使用了最新版本的 playservices:

compile 'com.google.android.gms:play-services-location:8.3.0'
compile 'com.google.android.gms:play-services-gcm:8.3.0'

但是,当我编译时,Gradle 抛出异常如下

Error:Execution failed for task ':app:processDebugGoogleServices'. > File google-services.json is missing from module root folder. The Google Services Plugin cannot function without it.

阅读 72

收藏
2022-06-21

共1个答案

小编典典

您需要从开发者站点获取 配置文件 并将其粘贴到项目的应用级目录中。

更新:

  1. https://console.firebase.google.com/

  2. 选择您的项目

  3. 在左侧菜单中,单击设置 > 项目设置

  4. 添加应用程序或下载 您的应用程序 部分下的 google-services.json 文件。

2022-06-21