Is it possible to call hangout user from android programatically as what we do in Skype (Skype:username?call&video=true)
? I tried for Skype and it's working fine. But I didn't get a proper solution for Hangouts. I saw code units in android to call Hangouts through link, but I didn't get a proper solution to call a hangout user from Hangouts installed on the android device.
For Skype I have this:
Intent skypeIntent = new Intent(Intent.ACTION_VIEW);
String contactUserName="helpdesk";
skypeIntent.setData(Uri.parse("skype:" + contactUserName + "?call&video=true"));
The above code calls the corresponding Skype user by accessing the installed Skype Application on the android device.
Similarly I would like to do the same for Hangouts. i.e. to make a call from android phone programatically from hangouts to hangouts.
It will be help full if i get a Solution for ooVoo too.