How do I remove values in Google Firebase?
I want to remove values in Google Firebase, but I don't know how to do it with this code.
I'd tried the following method, but it didn't work:
FirebaseDatabase.getInstance().getReference().child("Notifications")
.child(firebaseUser.getUid())
.child("postid").child(postid)
.removeValue();