RE: [android-developers] Unable to send text messages on some Android Phones using SmsManager

2012-01-24 Thread Admin
-developers@googlegroups.com] On Behalf Of voicely Sent: Saturday, January 21, 2012 1:41 PM To: Android Developers Subject: [android-developers] Unable to send text messages on some Android Phones using SmsManager Hello, My mobile app occasionally is sending text messages, everything works great on most

[android-developers] Unable to send text messages on some Android Phones using SmsManager

2012-01-23 Thread voicely
Hello, My mobile app occasionally is sending text messages, everything works great on most phones but i am starting to receive emails from some users stating the messages aren't going out. Here is the code i am using: SmsManager sms = SmsManager.getDefault(); sms.sendTextMessage(+1222333,

Re: [android-developers] Unable to send text messages on some Android Phones using SmsManager

2012-01-23 Thread abhijeet tomar
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 =

RE: [android-developers] Unable to send text messages on some Android Phones using SmsManager

2012-01-23 Thread Admin
, January 23, 2012 7:18 AM To: android-developers@googlegroups.com 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