Keeping Track Of Sms Sent In Android
I'm noticing the tracking pending intents that I send out via the standard SmsManager in Android doesn't seem to retain the extra information in them. Example: Intent sentIntent =
Solution 1:
Try adding the flag FILL_IN_SELECTOR
when you create the PendingIntent (see the spec for PendingIntent.getBroadcast
for the flags and their general behavior). This should force the PendingIntent
to take in all the top-level extras from the Intent
.
Post a Comment for "Keeping Track Of Sms Sent In Android"