Android Question Send SMS

MarcioCC

Member
Licensed User
Longtime User
Does anyone know how to send SMS message through an app ?? Is there any library for this ??
I need to develop an app where you have this option to send sms to clients.
 

imbault

Well-Known Member
Licensed User
Longtime User
Add the Phone library to your project

B4X:
Dim ps As PhoneSms

Dim cTo, cSms as String

cTo = "06000000000"  ' phone Nomber
cSms = "Your SMS Text"
ps.Send2(cTo, cSms, False, False)
 
Upvote 0
Top