Android Question Send SMS & Security Checks

luke2012

Well-Known Member
Licensed User
Longtime User
Hi All,
to send SMS (programmatically) on Android it's enough the obtain the related system permission ?

What about the same thing on iOS App ?

Thanks in advance for your reply.
 

Star-Dust

Expert
Licensed User
Longtime User
Hi All,
to send SMS (programmatically) on Android it's enough the obtain the related system permission ?.
Yes, But what do you want to do?
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
What about the same thing on iOS App ?
Wrong forum? This is the B4A forum.
If you have any b4i/iOS Question then you should create a new thread in the iOS part of the forum.
 
Upvote 0

Star-Dust

Expert
Licensed User
Longtime User
Try this (Use phone library):
B4X:
Sub Event_Click
    Dim Sms As PhoneSms
  
    Sms.Send2(NumberPhone,Body,False,False)
End Sub
 
Upvote 0
Top