B4A Tutorial Intent Filters - Intercepting SMS messages in the background - Erel    Jan 13, 2023   (14 reactions) SmsInterceptor objects from the Phone library also use dynamic registration to listen for common intents... example if we want to listen for intents with the action: android.provider.Telephony.SMS_RECEIVED we will need to add the following manifest editor code: AddPermission(android.permission.RECEIVE_SMS....SMS_RECEIVED" /> </intent-filter>) s1 is the name of the service module that the intent will be delegated to. We also add the RECEIVE_SMS permission which is required in this case. Once... B4A Tutorial SMS and CALL_LOG permissions are no longer available - Erel    Oct 10, 2018   (14 reactions)   tags: #PAIN Google has changed their policy regarding the following permissions: READ_SMS, SEND_SMS, WRITE_SMS, RECEIVE_SMS READ_CALL_LOG, WRITE_CALL_LOG, PROCESS_OUTGOING_CALLS Only the default phone or... be used: - CallLog - SmsMessages - PhoneSms - SmsInterceptor (and the equivalent static intent filter) 1. Note that you can send sms messages with an intent and without a permission: Dim In As Intent Dim number = "0123456789" As String In.Initialize(In.ACTION_VIEW, "sms:" &... B4A Question Intercept SMS messages without notification Android 4.4 - gawie007    Jan 27, 2014 Hi, It appears that the ability to intercept and consume SMS messages will not be allowed from Android 4.4 unless the program that we write is the default SMS App. I came across this on my almost fruitless search to try to delete an SMS from the store. http://android-developers.blogspot.co.uk/2013/10/getting-your-sms-apps-ready-for-kitkat.html My programs will be filling up the SMS stores with meaningless information (to the user) because of this change if my program is not the main receiver... B4R Tutorial GSM / GPRS - Control the Arduino with SMS messages - Erel    Oct 8, 2017   (11 reactions) the attached example, implements the most common commands. - Sending and receiving SMS messages... is controlled with SMS messages. The button sends a "click!!!" message: Sub btn_StateChanged (State As Boolean) If State = False Then GSM.SendSMS(phoneNumber, "Click!!!") End If... B4i Tutorial Mails and SMS messages - Erel    Oct 27, 2014   (6 reactions) MailComposer and MessageComposer types from the iPhone library allow the user to send mails and SMS messages from your app. The users will see a pre-filled form which they can modify and send. (press on the small gear button and set the quality to HD) 9xVBITOdgIA Not all devices support these two features. You should check whether the feature is supported or not. In this example it is done with this code: mailButton.Enabled = mailc.CanSendMail smsButton.Enabled = smsc.CanSendText The next... B4A Library SMS retriever API - DonManfred    Feb 5, 2019   (26 reactions) Starting from Android 6 there is an Api from Google which can Listen for a Incoming SMS for you. But you do not need any Permission for this. The SMS ends up in the Devices standard SMS App but your app can do an Phoneauthentification using an SMS from your Server. Usually the way would be: 1. Ask... a SMS to the Device with an specific format. 4. The SMS retriever Api waits 5 Minutes (from which point it is started) and captures this SMS if it has the correct AppHash in it and the Format is correct... B4A Example Turn an old Android phone into your own SMS Gateway (Firebase trigger + SENT/DELIVERED tracking) - scsjc    Mar 2, 2026   (16 reactions) Turn an Old Android Phone into Your Own SMS Gateway
(Firebase trigger + SENT / DELIVERED tracking... SMS (OTP).
However, after updating B4A and modernizing parts of the project, I ran... phone with a SIM card (unlimited SMS) as a self-hosted SMS server.
Sometimes we have great ideas... Cloud Messaging (FCM).
When a message arrives, it wakes up.
It sends a real SMS using SmsManager... B4A Question Send SMS from B4A code - Nishan15    May 18, 2020 I am looking for any working library for sending SMS directly from B4A code without user intervention . By using "Intet" , it need user action to click "Send" Button in messaging app. Dim In As Intent In.Initialize(In.ACTION_VIEW, "sms:" & number) In.PutExtra("sms_body", "this is the body") StartActivity(In)... B4A Question Sent SMS messages won't appear in the log - NeoTechni    Nov 3, 2012 I'm using Sub SendTextMessage(PhoneNumber As String, Message As String)As Boolean Dim SmsManager As PhoneSms ,r As Reflector, parts As Object If PhoneNumber.Length>0 Then Try If Message.Length <= 160 Then SmsManager.Send(PhoneNumber, Message) Else r.Target = r.RunStaticMethod("android.telephony.SmsManager"... End If End Sub to send SMS messages, but they don't appear in the history. Do I have to... B4A Code Snippet Send SMS/MMS using Twilio Rest API - JohnC    Jan 9, 2022   (14 reactions) you bought at about $0.01 per SMS (around 125 characters). Receiving an SMS to your Twilio number... with attachments. I am available for hire if you need these additional abilities :) Here is the SMS text sending code: Sub SendTwilioSMS(NumbertoSendto As String, MessageToSend As String) 'This routine sends an SMS from your Twilio.com number to specified number (must include country code... OK!","SMS") Else Msgbox("There was an error sending the SMS message... Page: 1   2   3   4   5   6   7   |