Groups and Forums with the Android SDK

Creating a Group

private void createGroup(String groupName, List<String> users) {
// Call this method to notify our Roster Manager to create a group in our server
TT.getInstance().getRosterManager().createGroup(users, organizationID, groupName, null);
}

Creating a Forum

private void createForum(String forumName, String forumDescription) {
// Call this method to notify our Roster Manager to create a forum in our server
TT.getInstance().getRosterManager().createRoom(forumName, organizationID, null, forumDescription, null);
}

Next Steps

If you would like more information about the TigerConnect Android SDK, please read the Android SDK Reference.