I am using the following code to send sms from my application. It works ok on my Galaxy pop device. But getting Readexception in Premium Galaxy devices. Please let me know what could be the problem.
SmsManager smgr = SmsManager.getDefault();
String msisdn = "8277335968"; //test
Intent intent = new Intent("SMS_SENT");
PendingIntent sentIntent = PendingIntent.getBroadcast(this, 0,
intent, PendingIntent.FLAG_ONE_SHOT);
PendingIntent deliveryIntent = null;
String scAddress = null;
String message = "12345678+23823#21328&121";
smgr.sendTextMessage(msisdn, scAddress, message, sentIntent, deliveryIntent);