I am developing chat application in android using smack and openfire, now i am facing problem to show the list of all users so that these users can be invited for chat, i tried with roster using below code but roster entries size is always zero. While i am properly logged in. Following is my code snippet.
Roster roster =Roster.getInstanceFor(xmppConnection);
Collection<RosterEntry> entries = roster.getEntries();
for (RosterEntry entry : entries) {
System.out.println(entry);
}