android dumpsys permission denial android dumpsys permission denial shell shell

android dumpsys permission denial


Why does android OS still deny me access to the dump service ?

Because that permission is flagged as android:protectionLevel="signature|system|development" (or signatureOrSystem using the old syntax) on Android 2.3+, and therefore cannot be held by ordinary Android SDK applications.


There's another (hacky) way to access dumpsys without rooting your device - through adb shell.

This will require allowing USB debugging, and finding the port of the adb service.

  1. Enable USB debugging on your device. This option is found under Settings -> Developer Options.

  2. Connect your device to a PC, and run the following command from the PC's shell/command line:adb tcpip 12345. Then, from your devices shell, issue the command adb connect localhost:12345 from your application. You can now disconnect the device from USB.Alternatively, you can scan the ports on your device one by one without USB connection, using adb connect localhost:<portnum> and find the port adb service is listening to.

  3. Authorize USB debugging from the pop up confirmation dialog, if prompted. Check the "always" checkbox to do not require this step again.

  4. Now, when you have access to the adb service, use adb shell dumpsys ... from your application code to get whatever service dump you need.

NOTE: You don't need the DUMP permission for that to work.


The android dev team decided to stop granting these permissions to third-party apps. Only system apps can now get them.

more details:https://code.google.com/p/acra/issues/detail?id=100