| <?xml version="1.0" encoding="utf-8"?> |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| package="test.pkg"> |
| <application android:icon="@drawable/ic_launcher"> |
| <<warning descr="BroadcastReceivers that declare an intent-filter for `SMS_DELIVER` or `SMS_RECEIVED` must ensure that the caller has the `BROADCAST_SMS` permission, otherwise it is possible for malicious actors to spoof intents">rec<caret>eiver</warning> |
| android:name=".SmsReceiver"> |
| <intent-filter> |
| <action android:name="android.provider.Telephony.SMS_RECEIVED"/> |
| </intent-filter> |
| </receiver> |
| </application> |
| </manifest> |