I am using Firestore adapter for my RecyclerView and I am having trouble with the \'Delete\' button. When I press it, it deletes the wrong item instead of the one t
RecyclerView
You are sending wrong data.
Query query = collectionReference.whereEqualTo("donationReq", (position + 1));
You had write position instead of position + 1
position
position + 1