How to perform GroupChat in android using XMPP -
i working on group chat in android using asmack library. able chat single user getting problems in group chat. require tutorial or code perform group chat. i've referenced this stack overflow question , this blog post when looking solution. public void muc_configure(string roomname){ try{ muc = new multiuserchat(xmppsmackconnection.connection, roomname+constant._hostnamewithconf); muc.create("nickname1"); // send empty room configuration form indicates want instant room muc.sendconfigurationform(new form(form.type_submit)); muc.join("nickname1"); muc.invite("column1"+constant._hostnamewithat+"/smack", "meet me in excellent room"); muc.addinvitationrejectionlistener(this); muc.addmessagelistener(this); }catch (exception e) { e.printstacktrace(); } } finally done above method.