In my application i want to add possibility to Start a call hangouts
It is possible to call intent hangout application with an extra email google to call this person ?
What i want to do it is something like this:
Intent sky = new Intent(Intent.ACTION_VIEW,
Uri.parse("https://plus.google.com/hangouts/_/mail_to_call@gmail.com"));
startActivity(sky);
So when i excecute this i want to call person with mail mail_to_call@gmail.com throught hangout application
any help will be welcomed