Код: Выделить всё
override fun onReceive(c: Context, i: Intent) {
val bundle = intent.extras
if (bundle != null && intent.action == SMS_RECEIVED) {
var currentMessage: SmsMessage
var msgs: Array? = null
var pdusObj: Array? = null
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
msgs = Telephony.Sms.Intents.getMessagesFromIntent(intent)
currentMessage = msgs!![0]
} else {
pdusObj = bundle.get("pdus") as Array
currentMessage = SmsMessage.createFromPdu(pdusObj[0] as ByteArray)
}
mPhoneNumb = currentMessage.displayOriginatingAddress
}
создать намерение (с моим номером телефона и текстовым сообщением) для эмуляции входящего SMS.
Есть ли способ сделать это?
ОБНОВЛЕНИЕ:
спасибо MikeM найдите это решение: создайте PDU для Android, который работает с SmsMessage.createFromPdu() (GSM 3gpp)
но я все еще не могу отправить поддельные SMS на свой широковещательный приемник, на этот раз я получаю сбой со следующей ошибкой:
Код: Выделить всё
SecurityException: Permission Denial: not allowed to send broadcast android.provider.Telephony.SMS_RECEIVED from pid=14860, uid=10621
Код: Выделить всё
Код: Выделить всё
public class SendTestSms {
public void createFakeSms(Context context, String sender,
String body) {
byte[] pdu = null;
byte[] scBytes = PhoneNumberUtils
.networkPortionToCalledPartyBCD("0000000000");
byte[] senderBytes = PhoneNumberUtils
.networkPortionToCalledPartyBCD(sender);
int lsmcs = scBytes.length;
byte[] dateBytes = new byte[7];
Calendar calendar = new GregorianCalendar();
dateBytes[0] = reverseByte((byte) (calendar.get(Calendar.YEAR)));
dateBytes[1] = reverseByte((byte) (calendar.get(Calendar.MONTH) + 1));
dateBytes[2] = reverseByte((byte) (calendar.get(Calendar.DAY_OF_MONTH)));
dateBytes[3] = reverseByte((byte) (calendar.get(Calendar.HOUR_OF_DAY)));
dateBytes[4] = reverseByte((byte) (calendar.get(Calendar.MINUTE)));
dateBytes[5] = reverseByte((byte) (calendar.get(Calendar.SECOND)));
dateBytes[6] = reverseByte((byte) ((calendar.get(Calendar.ZONE_OFFSET) + calendar
.get(Calendar.DST_OFFSET)) / (60 * 1000 * 15)));
try {
ByteArrayOutputStream bo = new ByteArrayOutputStream();
bo.write(lsmcs);
bo.write(scBytes);
bo.write(0x04);
bo.write((byte) sender.length());
bo.write(senderBytes);
bo.write(0x00);
bo.write(0x00); // encoding: 0 for default 7bit
bo.write(dateBytes);
try {
String sReflectedClassName = "com.android.internal.telephony.GsmAlphabet";
Class cReflectedNFCExtras = Class.forName(sReflectedClassName);
Method stringToGsm7BitPacked = cReflectedNFCExtras.getMethod(
"stringToGsm7BitPacked", new Class[] { String.class });
stringToGsm7BitPacked.setAccessible(true);
byte[] bodybytes = (byte[]) stringToGsm7BitPacked.invoke(null,
body);
bo.write(bodybytes);
} catch (Exception e) {
e.printStackTrace();
}
pdu = bo.toByteArray();
} catch (IOException e) {
e.printStackTrace();
}
Intent intent = new Intent(context, SmsReceiver.class);
intent.setClassName("com.android.mms",
"com.android.mms.transaction.SmsReceiverService");
intent.setAction("android.provider.Telephony.SMS_RECEIVED");
intent.putExtra("pdus", new Object[] { pdu });
intent.putExtra("format", "3gpp");
context.sendBroadcast(intent);
}
private static byte reverseByte(byte b) {
return (byte) ((b & 0xF0) >> 4 | (b & 0x0F)
Подробнее здесь: [url]https://stackoverflow.com/questions/42002383/how-to-create-intent-that-emulate-incoming-sms[/url]