I have calling feature in my app. after clicking call button a call is directly made to the selected number. Its working in each and every device except Samsung galaxy S5. In Samsung galaxy S5 call is being disconnected instantly by just showing calling screen for microseconds. Below is the code I am using.
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:"
+ Common.getPreferences(getApplicationContext(),
"CONTACTNUMBER")));
callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
| Intent.FLAG_ACTIVITY_NO_USER_ACTION);
startActivity(callIntent);
Please let me know if I am doing anything wrong here.
Try this way given code also work on kitkat :
Note : add this permission in AndroidManifest.xml :