Any idea how to fix this guys? I posted this on StackOverflow, tried the IRC channel and I am posting this here, where else I should look for answers?
Can I contact anybody at Google about this? Thanks! -----Original Message----- From: [email protected] [mailto:[email protected]] 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 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("+12223334444", null, "test sms", null, null); I've read somewhere that I should use the PendingIntent, so i tried it as follows: PendingIntent pi = PendingIntent.getActivity(register.this, 0, new Intent(register.this, register.class), 0); SmsManager sms = SmsManager.getDefault(); sms.sendTextMessage("+12223334444", null, "test sms", pi, null); But it still doesnt work. So far I have gotten emails from users of Samsung Galaxy S II, Sprint Evo Shift, Samsung Sidekick phones. Please keep in mind it's not phone specific, i have tested the app on two of these phones (my friends) and the text message was sent normally. What am i doing wrong, is there another way to send text messages that would work on all phones? Thanks! -- 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

