W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@5680b5b

巧了我就是萌 提交于 2019-12-13 03:29:52

问题


I Got error

W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@bbad44f
W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@bbad44f

Here is my Gradle file

App Gradle file Project Gradle file

I tried all method but none of them work for me.

*****Edited*****

As Alex suggested removing [implementation 'com.firebase:firebase-client-android:2.5.2'] solve the issue but i want to push some data to firebase here is my code im using DB refrence

mRootref = new Firebase("https://mpay-infoters.firebaseio.com/users");
    Send.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            String FName_str = FName.getText().toString();
            String LName_str = LName.getText().toString();
            String Email_str = Email.getText().toString();
            String DocInput_str = DocInput.getText().toString();
            DatabaseReference mdatabase = FirebaseDatabase.getInstance().getReference().child("users");
            DatabaseReference currentdb = mdatabase.child(mAuth.getCurrentUser().getUid());
            currentdb.child("Phone No").setValue(PhoneNumber);
            currentdb.child("First Name").setValue(FName_str);
            currentdb.child("Last Name").setValue(LName_str);
            currentdb.child("Email").setValue(Email_str);
            currentdb.child(DocTitle).setValue(DocInput_str);
            Intent intent = new Intent(RegisterUserDetailsActivity.this,Bottom_nav.class);
            startActivity(intent);

        }
    });

回答1:


You cannot use the following dependency:

implementation 'com.firebase:firebase-client-android:2.5.2'

Along with the other dependencies, which I see, all are the latest versions. To solve this, just remove the implementation above.

You can find here more informations.

Beside that, please be also sure to have the latest version of Google Services.



来源:https://stackoverflow.com/questions/53148875/w-bichannelgoogleapi-firebaseauth-getgoogleapiformethod-returned-gms-com

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!