sms

  1. drgottjr

    Share My Creation FORWARD(er)!

    so here we have forwarder, an sms forwarding service. i realize there are forwarders out there, but mine is semi-automatic (like my glock). i prefer to leave my publicly known phone on a table. when calls or sms messages are received, notifications are posted. at the end of the day, after...
  2. DaOel

    Android Question B4A App as SMS-Messenger + API

    I receive requests from users of my app, that the old SMS Reminder Function in my older apps were a great tool. Thats why I tried to create an app that fullfills all criteria for an SMS Messenger. Finally I ended up Google not allowing it in the Play Store. (Main Purpose is different from...
  3. mohsen programmer

    Android Question Send SMS

    I added this function to my project: Sub SendMultipartTextMessage(Number As String, Message As String, SubscriptionId As Int) Dim r As Reflector r.Target = r.RunStaticMethod("android.telephony.SmsManager", "getSmsManagerForSubscriptionId", Array As Object(SubscriptionId), Array As...
  4. vangogh

    Android Question how to send an SMS (november 2023)

    hello OK, I REALLY read many many threads about this, but some are old, some says "it cannot be done anymore", some says "yes, it can be done" but when i run them I get an error... and yes, I can send sms using an intent - it works, not useful to me So, NOW, how can I send an SMS, (updated) ...
  5. M

    Android Question Start activity in service when screen locked android10+

    Hi everyone I am trying to make an app that will start activity even if the screen is locked with password when a specific text message is received. I'm using service intent filter for sms receiveing and it work fine when phone is on Tank's for any help
  6. RezaFaearhi

    Android Question Send sms with sim2

    Hello, I use this code to send SMS with SIM card 2 #If Java public boolean sendSms(String phoneNumber, String text, int sim) throws Exception { try { SmsManager smsManager = SmsManager.getSmsManagerForSubscriptionId(sim); ArrayList<String> parts = smsManager.divideMessage(text)...
  7. B

    Android Question Information about SMS sending limits from Android

    Good evening I must make an application that sends x amount of SMS I would like to know if there is currently a limit for sending SMS from Android and if there is, how much is it and what options do you recommend for the development of this app
  8. NachoImperium

    Android Question Broadcast listener isn't working on real phone

    Hey, my app should inform the user as soon as you receive an SMS. The permissions etc. I have already assigned everything, in my emulator everything works perfectly but unfortunately not with my real phone (Xiaomi). The Android version is the same, what is the reason...
  9. D

    Share My Creation Free Automatic pick & choose SMS Blocker or Automatic and immediately respond to sms..

    The app Is designed to run in background.. You enter a phone number for a SMS, and it will send a message immediately back to that sms when a text is received... NOW it does not actually block the sms.. but in my case it sends a text saying it did.. This was done so ex girlfriend would THINK...
  10. J

    Share My Creation Power monitor with SMS notification (free w/ source)

    Hi everyone! Here's the power monitor I built for my lab in B4A. Its fairly simple: if the device gets unplugged (power goes off), it waits for a moment and sends an SMS notification to the specified number. If the power comes back, it also sends a new SMS notification. We use it in an old phone...
  11. A

    Italian B4A - Copiare l'applicazione su un altro cellulare...ma dov'è?

    Ciao a tutti, finalmente dopo un po' che avevo parcheggiato la mia app per l'invio di sms, sono riuscito a chiuderla. Certamente ho ancora da lavorarci....ma per il momento mi soddisfa in pieno (diciamo). Dunque compilo in modalità release la mia app me la ritrovo sul desktop del mio cellulare...
  12. AKJammer

    B4J Question MQTT for SMS return Messages?

    Hey All, Before I get too far down this rabbit hole I figured I'd ask the community. I have a B4J project and have been able, with great help from everyone, to get outgoing SMS texting set up and working. I wasn't planning on having two way communication, but since I've got extra time...
  13. AKJammer

    B4J Question Entering Curl Command as HTTP in B4x

    Hey All, I'm in the same boat as Colin Evans was in question https://www.b4x.com/android/forum/threads/how-to-enter-a-curl-command-as-an-https-request.116932/, but my curl is structured differently. Is there some tutorial where we can find the breakdowns of the different flags in a curl...
  14. N

    Android Question Send SMS from B4A code

    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...
  15. InfiniteImp

    Android Question RCS messaging question

    Hi, I have an app written in B4A that sends out SMS messages and processes responses. Will this app be affected by Google's new RCS messaging or do the two standards work indpendently? I use PhoneSms.Send and sendMultipartTextMessage for outgoing messages and I intercept incoming messages...
  16. Alex Guerrero

    Android Question How to send an anonymous SMS or use a short number

    Hello, it is possible to send an "anonymous SMS" as does SMS Gateway or SIM Modem, I want to hide or change the number from where the SMS is sent by a short code or Short Sender [for example: +57 32043287## by 34512], the plan is to change the SMS to prepaid users for data (kbps) for internet...
  17. Multiverse app

    Wish SMS Retriever API

    Google is removing apps with SMS and CALL_LOG permissions In a recent email, they said: Can this be wrapped for B4A?
  18. C

    Android Question Sending SMS in the background

    Is it possible to send small SMS messages in the background without the application having focus, and the phone, not being switched on (i.e. running, but in standby) Thanks, Colin
  19. peacemaker

    Android Code Snippet Sending SMS with _SmsSentStatus and _SmsDelivered events

    My final result for SMS sending under Android8. 'Manifest editor AddPermission(android.permission.SEND_SMS) AddPermission(android.permission.READ_PHONE_STATE) 'Starter service Sub Process_Globals Dim rp As RuntimePermissions End Sub 'Main Activity Sub Process_Globals Dim Permissions As...
  20. rleiman

    Android Question Calling to texting someone from my contacts

    Hi Everyone, I would like to know if this can be done with B4A. I would like to be able to view all of my phone contacts in a list view and allow the user to select 1 or more contacts, get their phone number and ring them and play a sound file to them. If that can't be done can I send a SMS...
Top