In my app (for elderly people) I want to join an existing webrtc video conference without user-interface. i currently do:
String url = "https://appr.tc/r/" + RoomName;
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
it opens the webrtc room ok - but requires the user to join the chat. is there a way to automatically join the room, bybassing the required click?
Aucun commentaire:
Enregistrer un commentaire