How do I get the Firestore document ID when using FirestoreRecyclerAdapter?
Found the solution... In onBindViewHolder I was using
getSnapshots().get(position).getKey();
but it should have been
getSnapshots().getSnapshot(position).getId();
The correct version works fine, and gets the document ID.