Is there a Broadcast Receiver in android to listen to the SMS sent event?
In my application I want to count the number of SMS sent every predefined time interval. If
You can edit your own sms with SmsManager api from google and be notified by a PendingIntent:
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage (String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent)
You can be notified of the delivery with the parameter: PendingIntent sentIntent
But SmsManager is now deprecated :(