次のコードを使用して、アプリケーションから SMS を送信しています。私のGalaxy popデバイスでは問題なく動作します。ただし、Premium Galaxy デバイスでは Readexception が発生します。何が問題なのか教えてください。
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);