Hi all,
within an Android App I can use the belove code in order to send a SMS.
What about iOS Apps?
1) Is there a library to do this?
2) The OS allow to send SMS programmatically ?
within an Android App I can use the belove code in order to send a SMS.
What about iOS Apps?
1) Is there a library to do this?
2) The OS allow to send SMS programmatically ?
B4X:
Sub Event_Click
Dim Sms As PhoneSms
Sms.Send2(NumberPhone,Body,False,False)
End Sub