Is it possible to add audio / video chat to android using GTalk / Skype

I want to add the Audio / Video chat application to the application. Can anyone help me on this.

+3
source share
1 answer

You can run an intention. What will launch GTalk or Skype ..

Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("write the package name for GTalk / Skype");
startActivity( LaunchIntent );

These links may be useful: -

one similar link

similar question and To find out the name of the package, see this link

0
source

All Articles