我正在尝试将Firebase与我的应用程序连接,我正在执行this link.
中的所有步骤我有最新的Google Repo和android studio 2.2.3,但是当我打开工具下拉菜单时,没有Firebase选项。
知道我缺少什么吗?
答案 0 :(得分:49)
答案 1 :(得分:3)
答案 2 :(得分:0)
In Android Studio 3 , Go To Tools - > Android - > SDK Manager - > under that plugins in which search Firebase and there are three plugins click all then your android studio restart and can see Firebase Assistant there under tools ... Enjoy
答案 3 :(得分:0)
答案 4 :(得分:0)
在android studio 3.6.1中,我使用了很长的路,但是它的工作方式如下所示:
在项目概述页面的中心,单击Android图标(plat_android)以启动设置工作流程。
5。在“ Android包名称”字段中输入您应用的包名称
将配置文件移动到应用程序的模块(应用程序级)目录中。
要在您的应用中启用Firebase产品,请将google-services插件添加到您的Gradle文件中。
在您的根级别(项目级别)的Gradle文件(build.gradle)中,添加规则以包括Google Services Gradle插件。还要检查您是否拥有Google的Maven存储库。 11
`buildscript {
存储库{ //检查是否有以下行(如果没有,请添加): google()// Google的Maven存储库 }
依赖项{ // ...
// Add the following line:
classpath 'com.google.gms:google-services:4.3.3' // Google Services plugin
} }
allprojects { // ...
存储库{ //检查是否有以下行(如果没有,请添加): google()// Google的Maven存储库 // ... } }` 11
。在您的模块(应用程序级)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 {
// ...
}
将Firebase SDK添加到您的应用程序 在模块(应用程序级)Gradle文件(通常为app / build.gradle)中,添加要在应用程序中使用的Firebase产品的依赖项。
dependencies {
// ...
///添加用于Google Analytics(分析)的Firebase SDK 实施'com.google.firebase:firebase-analytics:17.3.0'
///添加要在应用程序中使用的任何其他Firebase产品的依赖项 //例如,也要使用Firebase身份验证 实施'com.google.firebase:firebase-auth:19.3.0'
//收到“找不到”错误?确保您已添加 //将Google的Maven存储库添加到您的根目录build.gradle文件中 }
同步您的应用程序,以确保所有依赖项都具有必需的版本。