The user data that I enter are not insert into the Firebase Realtime Database.
Android
1
Posts
1
Posters
10
Views
1
Watching
-
Everything is good, but when I enter the data, it says the "Sign Up successfully" but when I check there's no update on the Firebase Realtime Database. There are Android Manifest.xml and SignUp.java code. Can anyone help me ? AndroidManifest.xml SignUp.java @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.sign_up); //get data from edit text email_user = findViewById(R.id.email_user); etUName = findViewById(R.id.etUName); etPass = findViewById(R.id.etPass); confirm_password = findViewById(R.id.confirm_password); btnSignUp = findViewById(R.id.btnSignUp); btnSignUp.setOnClickListener(new View.OnClickListener() { @Override public voi