I've been waiting for this feature since the day I got my first android phone.
Hidden “App Ops” Feature in Android 4.3 Lets You Disable Permissions From Apps
11–20 of 63 posts
Re: Hidden “App Ops” Feature in Android 4.3 Lets You Disable Permissions From Apps
#12Developers: You are now on notice to handle SecurityException and fail soft. in most cases, this should be easy to do, and when it isn't, you can, at least, post a dialog that says" "This app really needs SOME_PERMISSION in order to run."
But since it is hidden, you are not on the hook, yet, to support users that start making use of this feature.
Re: Hidden “App Ops” Feature in Android 4.3 Lets You Disable Permissions From Apps
#13http://commonsware.com/blog/2013/07/26/app-ops-developer-faq...
Re: Hidden “App Ops” Feature in Android 4.3 Lets You Disable Permissions From Apps
#14This looks very useful. The Android permission system is pretty good from a technical point of view, but since a lot of apps just require all permissions regardless, and people are trained to disregard this when installing, it's almost moot. I wonder if Google is using requested permissions in Play rankings. The apps which require _all_ permissions should definitely be ranked lower.
Google is probably reluctant to do things that "harm" competing ad networks for fear of getting sued.
Re: Hidden “App Ops” Feature in Android 4.3 Lets You Disable Permissions From Apps
#15It would be nice if there was also a "simulate" option for some permissions. That way the app would think it has a permission when it doesn't. It could return an empty phonebook for contacts or random location for GPS or confirm a SMS was sent when it never went out, etc.
Re: Hidden “App Ops” Feature in Android 4.3 Lets You Disable Permissions From Apps
#16Earlier quoted context omitted.
Heaven forbid your app does error checking!
It does error checking. Would you write a program that constantly checks the config file to see if something changed, or to see if the euid it is running as suddenly changes? Of course not, why would you? And why would an Android app constantly check to see if the permissions it has been granted are suddenly un-granted? More to the point: why would an app ask for permissions it didn't need in the first place? The mos…
Re: Hidden “App Ops” Feature in Android 4.3 Lets You Disable Permissions From Apps
#17Earlier quoted context omitted.
Heaven forbid your app does error checking!
It does error checking. Would you write a program that constantly checks the config file to see if something changed, or to see if the euid it is running as suddenly changes? Of course not, why would you? And why would an Android app constantly check to see if the permissions it has been granted are suddenly un-granted? More to the point: why would an app ask for permissions it didn't need in the first place? The mos…
Ad networks. So wrap the calls to the ad network library in try/catch, and, in most cases, that takes care of the mostly gratuitous permissions.
Re: Hidden “App Ops” Feature in Android 4.3 Lets You Disable Permissions From Apps
#18Well-behaved apps won't ask for permissions they don't need anyway, and badly-behaved apps will simply refuse to run without all the permissions they (and their ad services) request.
Without the ability to pretend to have the permission but not actually provide useful data, this really won't help much.
On the bright side, at least a subset of these do behave in the sensible way: various reports suggest that calendar and contact accesses will successfully return empty results rather than erroring out, for instance.
Re: Hidden “App Ops” Feature in Android 4.3 Lets You Disable Permissions From Apps
#19I really like that Google have added this feature, but unfortunately I don't see it helping things much. I'm willing to be that many of the applications requesting odd and unnecessary permissions will be rewritten to simply not work when any one of those permissions aren't granted to them.
Many programs already won't work since they assume that they have the permissions they asked for.
Re: Hidden “App Ops” Feature in Android 4.3 Lets You Disable Permissions From Apps
#20Earlier quoted context omitted.
It does error checking. Would you write a program that constantly checks the config file to see if something changed, or to see if the euid it is running as suddenly changes? Of course not, why would you? And why would an Android app constantly check to see if the permissions it has been granted are suddenly un-granted? More to the point: why would an app ask for permissions it didn't need in the first place? The mos…
Android as a framework is designed in such a way that most of the times you wish to access a feature of the device requires a permission you should be using components that can enforce a security check with the PackageManager or can handle the SecurityExceptions generated from not having a permission. Poorly architect-ed apps will have an issue with this, but those apps already have problems.