I have this method of sending SMS via application:
public boolean enviaSMS(String fone, String mensagem) throws Exception {
try {
smsManager.sendMultipartTextMessage(fone, null,
smsManager.divideMessage(mensagem), n...
I'm developing an Android application that sends an SMS request to a remote device and receives a reply, also via SMS, which should be presented to the user.
In order to receive SMS I used the following code, which implements SmsReceiver...
I'm doing a search on operations that involve back-end communication that uses SMS messages to interact with users.
I could not find something relevant on Google that clearly explains how this service works. Anyone know where to start clearly...
I am doing internal software that needs some data that is received via SMS, the client sends the SMS with some information and currently I need to manually make the SMS re-sent. I plan to automate the process to become faster, more practical and...
I developed an application that is able to send an SMS with some information at the touch of a button, but one issue that concerns me is the devices that can not send SMS, type tablet's without a SIM card.
Is there any way I can validate this...
I bought the service from an SMS company. But to send the SMS I have to "rotate" the link below:
https://site.com/apiJSON.php?data={"login":"[email protected]","senha":"SENHA","campanha":"ID 1234","mensagens":{"1":{"numero":"2799999999","msg"...
I have a system that uses framework PHP Codeigniter and I need to receive SMS from a GPS of those car, which will give me the coordinates of the car in the style of Google Maps and from there I save in the database coordinates and date ....
I wonder if there is any way to send SMS for free to Brazilians cell phones.
I have already seen some PHP systems with this function, and I would like to have this function on my system as well.
I'm trying to send the SMS through SmsManager and then delete it from the sent items.
I'm running the following code:
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(num.getText().toString(), null, msg.getText().toString(), null,...