Launch Skype from an App Programmatically & Pass Number - Android

Viewed 21460

Trying to launch and pass tel. no. to skype by this code from my app:

PackageManager packageManager = getPackageManager();
Intent skype = packageManager.getLaunchIntentForPackage("com.skype.raider");
skype.setData(Uri.parse("tel:65465446"));
startActivity(skype);

Skype is launched but it can't catch the number.

6 Answers
Related