Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Retrieve Permissions list

I'm trying to retrieve the permissions of the apps in my device.

The weird thing is, for some apps I do get results, and in some of them I can't retrieve any permissions.

Maybe in order to get the permissions list of an app, the app has to set some specific flag? Because if I try to get the permission list of my app in this way:

PackageManager p = context.getPackageManager();
PermissionInfo[] z=p.getPackageInfo("com.test.myapp",PackageManager.GET_PERMISSIONS).permissions);

z is null, but for some apps (system apps, etc..) I do get some list.

Any idea?

Thanks, moshik.

like image 533
Moshik Avatar asked Jul 28 '10 14:07

Moshik


1 Answers

As far as i discovered it, the PermissionInfo contains only non-default permissions ( other than android.Manifest.permission.* ).

The only way ( i found ) is to manually check the android.Manifest.permission.* via

PackageManager.checkPermission(String permName, String pkgName); 
like image 64
JRitter Avatar answered Nov 04 '22 06:11

JRitter