Firebase Firestore order by not working
问题 I am learning about Firebase Firestore through official documentation. I was trying following code. Notifications are added using add() method of firestore. FirebaseFirestore.getInstance().colRefNotifications() .orderBy("timestamp", Query.Direction.DESCENDING) .get() .addOnSuccessListener(new OnSuccessListener<QuerySnapshot>() { @Override public void onSuccess(QuerySnapshot documentSnapshots) { if (!documentSnapshots.isEmpty()){ listNotifications.clear(); recyclerViewNotification