Firebase安装无法与Android中的Firebase服务器API通信

时间:2020-07-09 09:20:16

标签: android firebase

Firebase安装:由于配置无效,Firebase安装无法与Firebase服务器API通信。在初始化Firebase时,请更新Firebase初始化过程并设置有效的Firebase选项(API密钥,项目ID,应用ID)。

1 个答案:

答案 0 :(得分:0)

您应按照here中所述的选项配置Firebase:

  1. 将Firebase Android配置文件添加到您的应用中:

    a。点击下载google-services.json 以获取您的Firebase Android配置文件(google-services.json)。

    b。将配置文件移到应用程序的模块(应用程序级)目录中。

  2. 要在您的应用中启用Firebase产品,请将google-services插件添加到您的Gradle文件中。

    a。在您的根级(项目级)Gradle文件(build.gradle)中,添加规则以包括Google Services Gradle插件。检查您是否也拥有Google的Maven存储库。

    buildscript {
    
      repositories {
        // Check that you have the following line (if not, add it):
        google()  // Google's Maven repository
      }
    
      dependencies {
        // ...
    
        // Add the following line:
        classpath 'com.google.gms:google-services:4.3.3'  // Google Services plugin
      }
    }
    
    allprojects {
      // ...
    
      repositories {
        // Check that you have the following line (if not, add it):
        google()  // Google's Maven repository
        // ...
      }
    }
    

    b。在您的模块(应用程序级)Gradle文件(通常为app/build.gradle)中,应用Google Services Gradle插件:

    apply plugin: 'com.android.application'
    // Add the following line:
    apply plugin: 'com.google.gms.google-services'  // Google Services plugin
    
    android {
      // ...
    }