Search code examples
androidbroadcastreceiver

How to get all the System's BroadcastReceiver in an app by packageName?


I have the packageName.I can get some infos through the packageName.But What i want is the BroadcastReceiver in the manifest.xml.Is there any way to get them?


Solution

  • Call getPackageInfo() on PackageManager to retrieve the PackageInfo object for your desired package, and the BroadcastReceivers are listed in the receivers field of the PackageInfo.