我在 firebase 与 android studio 的连接中面临问题

问题描述 投票:0回答:1

实际的问题是,当我尝试将 firebase 与 android studio 连接以进行身份验证和数据库存储时,代码没有显示错误,并且在运行应用程序时,应用程序崩溃,而打开源代码显示没有错误。请任何人给我解决方案..

我已经尝试了所有的尝试,但问题还是没有解决

java android firebase firebase-authentication
1个回答
0
投票

添加 Firebase SDK:通过修改 build.gradle 文件将必要的 Firebase SDK 添加到您的项目中。

buildscript {
dependencies {
    // Add this line
    classpath 'com.google.gms:google-services:4.3.10'  // Check for the latest version
}

}

© www.soinside.com 2019 - 2024. All rights reserved.