使用实时数据库修复Firebase问题

时间:2019-11-08 02:31:42

标签: java android firebase firebase-realtime-database firebase-authentication

我试图在项目中使用Firebase数据库,但是由于某种原因,它不允许我将数据放入数据库中

我已经在Google中进行了搜索,但是在任何正确的地方都没有找到任何答案,有人说这是google-play,但我的模拟器在各个方面都很出色并且已更新

public void goToHomeActivityButtonClickableFuntion(View view) {
        auth.createUserWithEmailAndPassword(editTextEmail.getText().toString(), editTextPassword.getText().toString()).addOnCompleteListener(new OnCompleteListener<AuthResult>() {
                @Override
                public void onComplete(@NonNull Task<AuthResult> task) {
                        if (task.isSuccessful()) {
                                FirebaseDatabase.getInstance().getReference().child("Users").child("H").child("email").setValue("h");

                        } else {
                                Toast.makeText(getApplicationContext(), task.getException().getMessage().toString(), Toast.LENGTH_SHORT).show();
                        }
                }
        });
    }

1 个答案:

答案 0 :(得分:1)

您需要检查firebase控制台并使数据库部分中的读写规则为true。请按照link或查看所附图片。enable the firebase database for testing