2 回答
TA贡献1865条经验 获得超7个赞
错误是由于使用 Amazon kindle fire HD 进行测试所致。kindle 使用没有 Google play 服务的 FireOS,因此出现错误。
TA贡献1895条经验 获得超3个赞
您必须检查其中一项。1. SHA1 提供给您的应用程序。2. 您的根应用程序上必须有 google-services.json。3. 配置你的依赖。4. 确保您启用了电子邮件/密码验证。在 firebase 控制台身份验证选项卡中。
apply plugin: 'com.android.application'
android {
// ...
}
dependencies {
// ...
implementation 'com.google.firebase:firebase-core:16.0.6'
// Getting a "Could not find" error? Make sure you have
// added the Google maven respository to your root build.gradle
}
// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'
这在构建
buildscript {
// ...
dependencies {
// ...
classpath 'com.google.gms:google-services:4.2.0' // google-services plugin
}
}
allprojects {
// ...
repositories {
google() // Google's Maven repository
// ...
}
}
供参考。你的代码没有错。只是设置的东西。
添加回答
举报