Android - priority list for tracking SMS intentions

I was wondering if a list could be found that includes all the receivers associated with a particular action.

For example, I have the following receiver that runs every time an SMS is received:

<receiver android:name=".SmsReceiver" android:enabled="true">
    <intent-filter android:priority="101">
        <action android:name="android.provider.Telephony.SMS_RECEIVED" />
    </intent-filter>
</receiver>

So, with priority = "101", it runs even earlier than the default messaging service in Android.

I would like to find the entire intent filter associated with the certail action, in this case "android.provider.Telephony.SMS_RECEIVED"

I tried logging in to /data/data/com.android.provider.telephony/databases, but it does not store information.

It would be great if someone could tell me where I can find this information, and even if it is possible.

Hi,

Pablo

0
source
1

PackageManager queryBroadcastReceivers(), BroadcastReceivers, Intent. SMS_RECEIVED Intent.

+2

All Articles