Jitsi Meet Android
List participantInfoList = (List)(new Gson()).fromJson(event.getData().get(“participantsInfo”).toString(), (new TypeToken<ArrayList>() {
}).getType());
above code error not able to cast to ArrayList
The event.getData().get(“participantsInfo”) not return correct json string, the string is without double quote. I believe this is a bug with jitsi meet. (Correct me if I am wrong)
I tested with jitsi source code from Github
Thanks.