My android app sends a Data sms. All the phones are able to receive that message except my android. I have added a broadcast receiver in the manifest:
<receiver android:name=".SMSReceiver">
<intent-filter android:priority="10">
<action android:name="android.intent.action.DATA_SMS_RECEIVED" />
<data android:scheme="sms" />
<data android:port="5009" />
</intent-filter>
</receiver>
The application does not give any response when data sms is received, although the msg reaches the inbox. Help.