Is there a way in the UI (eg without having to download/extract the .adb
and open the app's AndroidManifest.xml
file) to view the complete list of permissions that are requested by a given app?
Note I'm trying to get the actual list of permissions
I'm not asking for the over-simplified human-readable permissions:
How can I get a complete list of permissions for a given app?
adb shell dumpsys package
is the easy way though, without requiring any third party app. – Irfan Latif Sep 26 '21 at 12:21