Why is PackageInfo.requestedPermissions always null?
- by Luke
I'm trying to enumerate all the permissions used by all the installed packages, however when I check the requestedPermissions property for each of my installed packages it is always null. The following is the code that does this:
private HashMap<String, List<String>> buildMasterList() {
HashMap<String, List<String>>…