当前位置: 首页 > 知识库问答 >
问题:

Firebase错误:W/BiChannelGoogleApi:[FirebaseAuth:]GetGoogleApiFormMethod()返回Gms

程祯
2023-03-14

这是我的注册活动。我正试图用Firebase创建一个createUserWithEmailAndPassword,并向用户的个人资料中添加一些详细信息,如全名、地址和电话号码。我想在创建带有电子邮件和密码的用户时,在分配给新用户的“用户”数据库中的唯一ID下添加用户配置文件。

public void signUpButtonClicked(View view) {

    if (!TextUtils.isEmpty(email_text) && !TextUtils.isEmpty(pass_text)) {
        mAuth.createUserWithEmailAndPassword(email_text, pass_text).addOnCompleteListener(new OnCompleteListener<AuthResult>() {

            public void onComplete(@NonNull Task<AuthResult> task) {
                if (task.isSuccessful()) {
                    String user_id = mAuth.getCurrentUser().getUid();
                    DatabaseReference current_user = mDatabase.child(user_id);
                    current_user.child("Email").setValue(email_text);
                    current_user.child("Full name").setValue(fullName);
                    current_user.child("Nickname").setValue(nick);
                    current_user.child("Address").setValue(fullAdd);
                    current_user.child("Phone Number").setValue(phone);

                    Toast.makeText(MainActivity.this, "You are now REGISTERED", Toast.LENGTH_LONG).show();
                    Intent userProfile = new Intent(MainActivity.this, MenuActivity.class);
                    startActivity(userProfile);

                } else {
                    email.setError(null);
                    pass.setError(null);
                }
            }
        });
   }

这就是我的身材。gradle看起来像。

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.google.firebase:firebase-auth:11.8.0'
    implementation 'com.google.firebase:firebase-database:11.8.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    implementation 'com.android.support:recyclerview-v7:26.1.0'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.firebaseui:firebase-ui-database:1.0.1'
    implementation 'com.android.support:cardview-v7:26.1.0'
    compile 'com.cepheuen.elegant-number-button:lib:1.0.2'

    compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
    compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
}
apply plugin: 'com.google.gms.google-services'

它不会崩溃,但也不会做任何事情。它只是记录这个错误。

12-26 12:12:53.194 4484-4522/com.example.example.example W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms
12-26 12:12:56.766 4484-4484/com.example.example.example  W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms
12-26 12:12:57.943 4484-4522/com.example.example.example  W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms
12-26 12:13:03.621 4484-4522/com.example.example.example W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms
12-26 12:13:11.635 4484-4522/com.example.example.example W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms

共有1个答案

法弘壮
2023-03-14

尝试降级Firebase版本或更新手机或模拟器中的Goole play和play服务。

implementation 'com.google.firebase:firebase-auth:11.4.2'
implementation 'com.google.firebase:firebase-database:11.4.2'
implementation 'com.firebaseui:firebase-ui-database:3.1.0'

或Firebase版本10.2.6

 类似资料:
  • 在下面的代码中,当我试图将数据插入firebase Firestore时,数据被插入,但在返回promise时,它将错误作为内部错误返回。Hera是控制台记录的错误 在index.js中的console.log()上登录云函数时出错 引发内部错误的原因是什么

  • 基类控制器里有error方法,用于api的错误消息返回输出 /** * 操作错误跳转的快捷方法 * @access protected * @param mixed $msg 提示信息,若要指定错误码,可以传数组,格式为['code'=>您的错误码,'msg'=>'您的错误消息'] * @param mixed $data 返回的数据 * @par

  • 我是JS的学生。我有一段代码返回了一个错误。 这是返回的语法错误。你们能解释一下我做错了什么吗?

  • 问题内容: 我有以下代码: 那应该从给定的URL返回图像。 我测试了以下两个随机选择的URL: https://www.google.co.ma/images/srpr/logo4w.png http://www.earthtimes.org/newsimage/osteoderms-storing-minerals-helped-huge-dinosaurs-survive_3011.jpg 第

  • JSoup-1.8.1 尝试{ Document Document=Jsoup.connect(url.get(); 返回Document.getElementsByTag(“title”).text(); }catch(异常e){ System.out.println(e); 返回null; } org.jsoup.HttpStatusExc0019: HTTP错误获取URL。状态=404, U

  • 问题内容: 在Windows 2003上按计划任务运行的Java应用程序崩溃了,没有日志或任何有助于查明情况的信息。唯一可用的信息是该应用程序返回了代码143(8F)。该错误代码是从计划的任务日志中检索到的。 有谁知道该错误代码(143)代表什么?用户注销是否有可能导致应用程序终止? 谢谢, 问题答案: JVM错误代码143表示内部字段必须有效。这是在OTN讨论论坛上讨论的。但是,结论似乎是扼杀您