文件google-services.json

时间:2017-02-21 17:35:27

标签: java android firebase

我遇到了问题。我想安装firebase

.Build.gradle(project) 
compile 'com.google.firebase:firebase-database:10.2.0'

错误:任务':app:processDebugGoogleServices'执行失败。

  

文件google-services.json缺失。没有它,Google Services插件无法运行。      搜索位置:     C:\ Users \用户Yavuz的\桌面\维泽\ DersZamani2 \程序\ SRC \调试\谷歌,services.json     C:\ Users \用户Yavuz的\桌面\维泽\ DersZamani2 \应用\ Google处理services.json

3 个答案:

答案 0 :(得分:0)

文档有信息。按照Android应用程序的说明进行操作

https://support.google.com/firebase/answer/7015592?hl=en#android

答案 1 :(得分:0)

在Firebase控制台上配置项目时,您将下载google-services.json文件。如果没有,请转到Firebase控制台中的项目并再次下载。

google-services.json文件放入项目的app目录并再次同步Gradle

答案 2 :(得分:0)

请遵循以下文档:https://firebase.google.com/docs/android/setup

您必须在app文件夹中添加google-services.json并将其添加到项目gradle中:

buildscript {
// ...
dependencies {
    // ...
    classpath 'com.google.gms:google-services:3.0.0'
}
}

然后,在您的模块Gradle文件(通常是app / build.gradle)中,在文件底部添加apply plugin行以启用Gradle插件:

dependencies {
   // ...
   compile 'com.google.firebase:firebase-core:10.2.0'

   // Getting a "Could not find" error? Make sure you have
   // the latest Google Repository in the Android SDK manager
   }
  // ADD THIS AT THE BOTTOM
 apply plugin: 'com.google.gms.google-services'