我出错
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
这是我的Gradle文件
App Gradle file Project Gradle file
我尝试了所有方法,但没有一个对我有用。
*****编辑*****
如Alex建议删除[实现'com.firebase:firebase-client-android:2.5.2'] 解决了问题,但我想将一些数据推送到Firebase,这是我使用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);
}
});
答案 0 :(得分:1)
您不能使用以下依赖项:
implementation 'com.firebase:firebase-client-android:2.5.2'
与其他依赖项(我看到的一样)都是最新版本。要解决此问题,只需删除上面的实现。
您可以找到here更多信息。