I am very new for this android application development and I am learning. This question might look very easy but I am unable to find a solution. I am posting my code..
Intent skype = new Intent("android.intent.ACTION_VIEW");
skype.setClassName("com.skype.raider", "com.skype.raider.Main");
skype.setData(Uri.parse("skype:echo123?call"));
this.startActivity(skype);
I got this from referring to the link Launch Skype from an App Programmatically & Pass Number - Android. I have tried everything on that page. From the above code, I am able to start the skype but am NOT able to start the call.. Please help me on what I am missing out..!!