I used this code to make USSD command:
This code works fine, but after calling the ussd command executed, i received msgbox with OK button. How can I dismiss that msg programmatically ?
B4X:
Sub Call(USSDCommand As String)
Dim pc As PhoneCalls
Dim i As Intent
i.Initialize(i.ACTION_CALL, "tel:" & USSDCommand.Replace("#", "%23"))
StartActivity(i)
End Sub