I am using firebase to retrieve data from database n use
Map map = dataSnapshot.getValue(Map.class);
to get values, but it
Chage
Map map = (Map)dataSnapshot.getValue(Map.class);
by this
Map map = (Map) dataSnapshot.getValue(Map.class);