Is It Possible To Resend Sms_received Broadcast?
I want to resend received SMS_RECEIVED broadcast. I've find example here: http://blog.dev001.net/post/14085892020/android-generate-incoming-sms-from-within-your-app and make it by
Solution 1:
If you want to use the same data( same received sms) it would be better to reuse the same intent and don't tray to build your own. just use intent.putExtras(Bundle extras); Can you replace "update.putExtra( "pdus" , new Object[] { pdus });" with "update.putExtra(pudsBundle)". Try it and let me know if it works, i haven't time to reproduce.
Post a Comment for "Is It Possible To Resend Sms_received Broadcast?"