i want to send fake sms on android. but i couldnt do it.My codes are below:

Intent a = new Intent("android.provider.Telephony.SMS_RECEIVED");

            byte[] by =(byte[])(SmsMessage.getSubmitPdu("12345", "1234", "hello", false).encodedMessage);
            Object[] vrs = {by};
            a.putExtra("pdus",vrs);
            sendBroadcast(a);

Do you have any idea?

link|improve this question
feedback

2 Answers

Check your manifest file and sure give these permissions:

<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
link|improve this answer
thank you but i already did this. and didnt work – user1203666 Feb 11 at 12:03
feedback

Some broadcasts are protected and can only be sent by the System. Maybe this is one of those.

UPDATE This snippet from the Android SMS application might help you.

<!-- Require sender permissions to prevent SMS spoofing -->
<receiver android:name=".transaction.PrivilegedSmsReceiver"
    android:permission="android.permission.BROADCAST_SMS">
    <intent-filter>
        <action android:name="android.provider.Telephony.SMS_RECEIVED" />
    </intent-filter>
</receiver>

In short, try asking for the BROADCAST_SMS permission

for further reference http://mobiforge.com/developing/story/sms-messaging-android

link|improve this answer
Sorry guys for the bad answer. Will take care of this in the future. – Vikram Bodicherla May 9 at 3:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.