How can i make intent to call from second sim card in my device? I have found this way:
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.putExtra("simSlot", selectedSlot);
callIntent.setData(Uri.parse("tel:" + tel));
startActivity(callIntent);
where selectedSlot may be 0 or 1 (first or second sim). But it doest work. I replaced line
callIntent.putExtra("simSlot", selectedSlot);
to line
callIntent.putExtra("com.android.phone.extra.slot", selectedSlot);
but it doesnt work too. So, how can i to make intent to call from second sim card??