B4A Tutorial SMS and CALL_LOG permissions are no longer available - Erel    Oct 10, 2018   (12 reactions) 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 messaging apps can use these permissions:
https://support.google.com/googleplay/android-developer/answer/90 B4A Question Complete SMS intercepting example after KitKat - Erel (first post)    Apr 12, 2017   (1 reaction) You are confusing different things. The difference between SmsInterceptor and the solution based on an intent filter (not default SMS app) is that SmsInterceptor will only work while the process is running while the intent based solution will always work. B4A Question B4A SMS Class vs android SMSMessage Class - Erel (first post)    Nov 23, 2015   (1 reaction) No. Theses are two different things.
SmsMessage class is used by SmsInterceptor when a new message is received. The stored messages are stored in a different format. B4A Question Read SMS Message - aaronk    Nov 29, 2023 Hi,
I am trying to Intercept / Read an SMS so I can view the message in my app. (This app won't be going on Google Play).
I can send the SMS from my app, and that part works fine.
I have been using the SmsInterceptor method in the past and it has worked fine, as per below.
Sub Service_Create
B4A Question SmsInterceptor is not working - KMatle (first post)    Apr 04, 2018   (1 reaction) Take a look at this: https://www.b4x.-foreground-mode.90546/
add "Sleep(0) & Service.StopAutomaticForeground" like this
Sub Service_Start (StartingIntent As Intent)
fm.HandleIntent(StartingIntent)
Sleep(0) 'allow the MessageReceived event to be raised.
Service.StopAutomaticForeground
End B4A Question SmsInterceptor - Angelo Messina    Oct 18, 2019 SmsInterceptor does not work with
Sdk= "6" android: targetSdkVersion = "26" /> B4A Question SMS problem the aplication close - Cesar Guerra Torres    Jul 21, 2018 Hi, i am used the phone library, the resume code is: Private Sms2 As SmsInterceptor Sms2.Initialize2("Sms_Events",999) ' Sms2.ListenToOutgoingMessages 'Sub Sms_Events_MessageReceived (From As String, Body As String) End Sub But when the phone receive a sms the application is closed B4A Question Sending SMS by PhoneSMS incl. capturing of 'Message Sent' and 'SMS Received' events etc. - aaronk (first post)    Apr 20, 2021   (2 reactions) Your error is shown below:
In the settings app on your phone, you need to find 'apps and notifications' (may be called something different based on your phone) > find your app > need to enable the SMS permission, then it will allow you to send SMS messages within the app.
I have used a Pixel4a (R B4A Question incoming sms stored to file, outgoing no, why? - Erel (first post)    Mar 19, 2015   (1 reaction) No intent is broadcasted when a message is sent. You can use SmsInterceptor.ListenToOutgoingMessages to track these messages (it will only work while the service is running). B4A Question [SOLVED] - Responding to an incoming SMS message - rleiman (first post)    Jan 25, 2020   (2 reactions) Thanks for the link. I read something in that link about SmsInterceptor and that did the trick. I'm also posting all the coding so everyone can know what I did. It detects a phone call and now an incoming text and displays that to the logs. The app also allows you to send a text. It's simple with no Page: 1   2   3   4   5   6   7   Powered by ColBERT |