Hi everbody,
I read (downloaded and tried) almost the entire b4a site looking for a really working example for phoneevents with dual sim calling
This is the code used to call
Can you help me?
Thanks in advance
I read (downloaded and tried) almost the entire b4a site looking for a really working example for phoneevents with dual sim calling
This is the code used to call
B4X:
'sim = 0 SIM1, = 1 SIM2
Sub Call_SIM(num As String, sim As Int)
Dim i As Intent
i.Initialize(i.ACTION_CALL, "tel:" & num)
i.putExtra("simSlot", sim)
i.putExtra("com.android.phone.force.slot", True)
i.putExtra("Cdma_Supp", True)
i.putExtra("com.android.phone.extra.slot", sim)
StartActivity(i)
End Sub
Can you help me?
Thanks in advance
Last edited: