web-dev-qa-db-ja.com

Firebaseエラー:W / BiChannelGoogleApi:[FirebaseAuth:] getGoogleApiForMethod()がGmsを返しました

これが私のサインアップ活動です。 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);
                }
            }
        });
   }

これは私のbuild.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
5
lloydyu24

Firebaseバージョンをダウングレードするか、電話またはエミュレータでGoole PlayおよびPlay Servicesを更新してみてください。

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

3