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 Question [IsItPossible] Send multiple vote results to a single collector - Erel (first post)    Oct 22, 2013 You can listen to SMS messages. http://www.b4x.com/search?query=Intercepet+SMS It will be easier to use an online server for the backend. You can then use GCM push framework to update the phones.... 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... 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 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 Code Snippet [BM] - SMS Gateway - Brian Michael    Jul 11, 2025   (13 reactions) I'm working on a new project that involves sending SMS messages to my clients.
While doing... that creates a REST API within our phone and allows us to send SMS messages to any number we want through... B4A Question [Solved]Read OTP [SMS] and Insert into text Field - AndroidMadhu    Dec 10, 2020 Hello, I am trying to Read OTP and automatically insert into the text field. I am following the below link. But it is not working https://www.b4x.com/android/forum/threads/reading-sms-in-the-background.124180/#post-776115 How can I perform the same? Please advice. Thanks... Share My Creation Send SMS from anywhere using B4A ! [Free source included !] - Justcooldev    May 20, 2024   (24 reactions) Hi there!
I want to show you how to send SMS for free from anywhere (Server, B4J, B4A, B4I, Python....php" and "link to sms_sent.php" in the HTTP background service.
Compile the project... B4A Tutorial Max length of SMS message - sconlon    Jul 30, 2012   (1 reaction) My app will be sending SMS messages (using sms.send(phone, text) some of which may be longer than 160 chars. Currently, I have broken these down into multiple messages each of which is < 160 chars but this is a pain as I also have a receiving app which needs to put the messages back together again to process them However, I did some experiments with normal text messaging on my Galaxy S2... I tried to have my app send an SMS longer than 160 chars and got a 'null pointer exception'... 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... Page: 1   2   3   4   5   6   7   |