I use followoing permission to make phone call from my application
< uses-permission android:name="android.permission.CALL_PHONE" />
Here is my code for making call.
Intent iniCall=new Intent(Intent.ACTION_CALL);
iniCall.setData(Uri.parse("tel:9849199291");
startActivity(iniCall);
But It start the Skype Application instead of starting Default Calling Application.
How to call from default calling application?