我正在尝试将 Firebase 与我的应用程序连接,并且我正在执行此链接中的所有步骤。
我有最新的 Google Repo 和 android studio 2.2.3,但是当我打开工具下拉菜单时,没有 Firebase 选项。
知道我缺少什么吗?
我正在尝试将 Firebase 与我的应用程序连接,并且我正在执行此链接中的所有步骤。
我有最新的 Google Repo 和 android studio 2.2.3,但是当我打开工具下拉菜单时,没有 Firebase 选项。
知道我缺少什么吗?
在 android studio 3.6.1 中,我使用了很长的方法,但它的工作方式如下所示:
在项目概览页面的中心,单击 Android 图标 (plat_android) 以启动设置工作流程。
5.在 Android 包名字段中输入您应用的包名
将您的配置文件移动到应用程序的模块(应用程序级)目录中。
要在您的应用中启用 Firebase 产品,请将 google-services 插件添加到您的 Gradle 文件中。
在您的根级(项目级)Gradle 文件 (build.gradle) 中,添加规则以包含 Google Services Gradle 插件。检查您是否也有 Google 的 Maven 存储库。11
`构建脚本{
repositories { // 检查是否有以下行(如果没有,请添加): google() // Google 的 Maven 存储库 }
依赖项 { // ...
// Add the following line:
classpath 'com.google.gms:google-services:4.3.3' // Google Services plugin
} }
所有项目 { // ...
repositories { // 检查您是否有以下行(如果没有,请添加): 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 文件}
同步您的应用程序以确保所有依赖项都具有必要的版本。
在 Android Studio 3 中,转到工具 - > Android - > SDK 管理器 - > 在其中搜索 Firebase 并单击三个插件的插件下,然后您的 android studio 重新启动,可以在工具下看到 Firebase 助手...享受