Abhijeet Tomar, I tried everything even with PendingIntent for Delivered, with no Intends, or with both of them and it still does not work :(
Any other ideas? From: [email protected] [mailto:[email protected]] On Behalf Of abhijeet tomar Sent: Monday, January 23, 2012 7:18 AM To: [email protected] Subject: Re: [android-developers] Unable to send text messages on some Android Phones using SmsManager Hello...use this code to solve ur problem.... you have missed to call PendingIntent deliveredPI.. this code working fine...i am already used in a project... PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,new Intent(SENT), 0); PendingIntent deliveredPI = PendingIntent.getBroadcast(this, 0,new Intent(DELIVERED), 0); sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI); -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

