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 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 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 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 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 SmsInterceptor - Angelo Messina    Oct 18, 2019 SmsInterceptor does not work with
Sdk= "6" android: targetSdkVersion = "26" /> 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). French Envoi de SMS - imbault (first post)    Jan 20, 2016 Utilise l'événement approprié
Dim SI As SmsInterceptor
SI.Initialize2("SI", 999)
...
Sub SI_MessageReceived (From As String, Body As String) As Boolean
' SMS recu
End Sub B4A Question SmsInterceptor event MessageSent trigers 3-4 times - Erel (first post)    Oct 07, 2016   (1 reaction) It can fire multiple times as it listens to database changes in the SMS store. You will need to handle the multiple messages in your code. Page: 1   2   3   4   5   6   7   Powered by ColBERT |