Skip to main content

Posts

Showing posts with the label videochat

Start video chat without user interaction - Android

I am a total noob on this site so please be patient. I am trying to initiate a Video Chat/Call without any user interaction or confirmation. I found this: Uri imUri = new Uri.Builder().scheme("xmpp").authority("gtalk").query("call;type=video").appendPath(email).build(); Intent IM = new Intent(Intent.ACTION_SENDTO); IM.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); IM.setData(imUri); startActivity(IM); from here: http://stackoverflow.com/a/8024626/1184256 This gets me very close, but I then have to click an "Invite" button to continue. Is there a way I can emulate a KeyEvent to click this button or skip the popup window entirely with root access? I don't even necessarily need to use Google Video Chat if someone has found a different way to initiate a Video call to a certain contact via Skype, Vtok,Fringe, ooVoo or whatever without user interaction. I have also found OpenTok which after building a sample server and client on my site I