luke2012 Well-Known Member Licensed User Longtime User Oct 25, 2017 #1 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.
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 Oct 25, 2017 #2 luke2012 said: Hi All, to send SMS (programmatically) on Android it's enough the obtain the related system permission ?. Click to expand... Yes, But what do you want to do? Upvote 0
luke2012 said: Hi All, to send SMS (programmatically) on Android it's enough the obtain the related system permission ?. Click to expand... Yes, But what do you want to do?
DonManfred Expert Licensed User Longtime User Oct 25, 2017 #3 luke2012 said: What about the same thing on iOS App ? Click to expand... 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
luke2012 said: What about the same thing on iOS App ? Click to expand... 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.
luke2012 Well-Known Member Licensed User Longtime User Oct 25, 2017 #4 DonManfred said: 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. Click to expand... The question is for Android OS. The additional question is about iOS Upvote 0
DonManfred said: 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. Click to expand... The question is for Android OS. The additional question is about iOS
luke2012 Well-Known Member Licensed User Longtime User Oct 25, 2017 #5 Star-Dust said: Yes, But what do you want to do? Click to expand... I want to send a SMS when a event (within my app logic) occur. Upvote 0
Star-Dust said: Yes, But what do you want to do? Click to expand... I want to send a SMS when a event (within my app logic) occur.
Star-Dust Expert Licensed User Longtime User Oct 25, 2017 #6 Try this (Use phone library): B4X: Sub Event_Click Dim Sms As PhoneSms Sms.Send2(NumberPhone,Body,False,False) End Sub Upvote 0
Try this (Use phone library): B4X: Sub Event_Click Dim Sms As PhoneSms Sms.Send2(NumberPhone,Body,False,False) End Sub