Create PDU for Android that works with SmsMessage.createFromPdu() (GSM 3gpp)

Maybe this snippet doesn’t have many detail fields like you want but for my simple purpose it can invoke notification like another sms. private static 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 … Read more