Get a list of available Content Providers

后端 未结 6 1433
闹比i
闹比i 2020-11-29 20:48

Is there a way to programmatically list all available content providers on a device? No real use case, I just thought it might be neat to see what apps I have installed on

6条回答
  •  粉色の甜心
    2020-11-29 21:11

    From the command line, run:

    adb shell dumpsys | grep Provider{

    Note the opening brace. This will give you a short list of all the providers installed through various packages.

提交回复
热议问题