1
votes

I had created a small chat application using smack api,XMPP,openfire and i want to make a facility of group chat. I can able to create a group on openfire from wizard throw,but i want to create a group in openfire from coding in android.

1

1 Answers

2
votes

As described in the smack documentation you can create a new group chat ie room as follow:

MultiUserChat muc = new MultiUserChat(conn1, "[email protected]");
muc.create("testbot");
muc.sendConfigurationForm(new Form(Form.TYPE_SUBMIT));

And if you are referring to group in user contact list then you can also do it as follows:

roster.createGroup("groupName");

Where roster is the reference to the roster list of logged in user.