B4A Question PhoneSms and AndroidSdk version - GiovanniPolese    Sep 22, 2025 Hi to everybody
I have recently used an App using PhoneSms in Phone library,with no problem. Now..., Result2 As Boolean)
Before the crash which happens at :
Dim MySms as PhoneSms
MySms.Send(Number... B4A Library PhoneLibrary: Updated PhoneSms.Send - Sorin Pohontu    Apr 2, 2015   (6 reactions) Send/Send2 and I've tried to find a working solution.
1. Original function PhoneSms.Send2 is using....telephony.SmsManager;
public static void Send3(String PhoneNumber, String Text, Map<String... B4A Question Sending SMS using dual sim with PhoneSms - hamid rza (first post)    Sep 20, 2024 Thanks Erel
That helped me a lot and my problem solved... B4A Question PhoneSMS does not work - hatzisn    Jun 30, 2016 I am not able to send an sms with PhoneSMS library. My android version is 4.2.2.
My code runs from a service module. This is my code:
Sub SendSMS()
Dim pSMS As PhoneSms
Dim cur As Cursor... B4A Tutorial SMS and CALL_LOG permissions are no longer available - Erel    Oct 10, 2018   (14 reactions)   tags: #PAIN 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:" &...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... B4A Question PhoneSMS over WiFi - Rusty    Aug 18, 2015 Does PhoneSMS work over WiFi or must it be used on a cellular device?
Thanks,
Rusty... B4A Question PhoneSMS + Nexus 7 - Beja    Mar 11, 2015 Hi,
PhoneSMS is no longer working on Nexus 7. . anyone had same experience and solved it?
Thanks in advance... B4A Tutorial [java] Creating libraries for B4A - Erel    Sep 29, 2016   (8 reactions)   tags: Java library, Library, Creation .unregisterListener(listener); } } } PhoneSMS: @ShortName("PhoneSms") @Permissions(values={"android.permission.SEND_SMS"}) public static class PhoneSms... void Send(String PhoneNumber, String Text) { SmsManager sm = SmsManager.getDefault(); sm.sendTextMessage(PhoneNumber, null, Text, null, null); } } Email.... This will be covered in the future. Some examples: PhoneAccelerometer code: /** * This object gives... B4A Question ScreenOff, PhoneSms and PhoneEvents - lemonisdead    Sep 22, 2013 Hello,
This new thread comes after this post : http://www.b4x.com/android/forum/threads/service-startforground-and-phonesensors.32865/
Using the PhoneWakeState I was able to use some sensors. So I have tried to insert code to send SMS (some idea, why not...). The problem I had was that the SMS was only sent when the screen was ON again.
Using PhoneWakeState I was able to keep the screen... B4A Question Sending SMS by PhoneSMS incl. capturing of 'Message Sent' and 'SMS Received' events etc. - DonManfred (first post)    Apr 21, 2021   (1 reaction)
Thanks for the information.
you would already know if you firstly check the Object-Documentation w... Page: 1   2   3   4   5   6   7   |