0

Whenever we want to install an application from Google Play, the application will ask permission to access to some things. The number of permissions are different from one to another application. Below is an example of application that requests permission to access.

Then my question are, how that access work? Is the application will take our data for them? I.e: It ask to access images in the phone, will the application will copy and send all the images to the developer? Or, will the application copy the conversation as it has access to the microphone? And how long it will have the access one we granted and installed the application? Access permission's request

3 Answers 3

2

Is the application will take our data for them? I.e: It ask to access images in the phone, will the application will copy and send all the images to the developer? Or, will the application copy the conversation as it has access to the microphone?

There is no authoritative answer to this in the absence of the source code of the software being available for review, and of course, one's ability to review the code themselves. The applications are written by actors, developer(s) technically. That actor may be benign and genuine and minding just their business, literally and figuratively, so they would mention it in their terms of use policy that to what extent and what category of data would be collected.

However, a malicious actor would naturally want to have access to all the private data of yours, so their app may listen to your private conversations, use your camera, upload your photos and so on once you have granted access to the permissions it would have demanded.

Some detection and preventive safeguards can be deployed, but that matter is beyond the scope of this question here.

And how long it will have the access one we granted and installed the application?

Since Marshmallow, a user can revoke or grant certain dangerous permissions later in time even if they had been granted earlier, by going into Settings > Apps. The permissions stay as long as the app stays in the device. Once you uninstall an app, all granted accesses are lost, but not the data that it may have collected and uploaded somewhere else. A reinstallation is no different than a fresh installation in terms of permissions access.

3
  • Is Google aware such this access request? Look like not reasonable for remote access Android (AirDroid) request permission to access microphone. Commented Aug 2, 2019 at 9:45
  • Yes, Google is aware of all Play Store apps demanding X type of permissions and they have a set of rules about what core functionality must be there within an app to use a dangerous (with respect to privacy) permission. It is best if you ask upon Google Forums if you have issues with the permission model of Android or permission accesses demanded by a particular app.
    – Firelord
    Commented Aug 2, 2019 at 10:03
  • Thank you for your explanation. I will try to join the forum. Commented Aug 2, 2019 at 10:10
-1

It means app requires to use those features of your mobile. For example, app may let you upload a photo from gallery, so for that it requires permission to access storage.

1
  • Will it not use the data stored in our phone? I.e: The picture, the sms, etc, will not be sent to them? How about microphone? What for? Commented Aug 1, 2019 at 8:15
-1

When it requires access, it means everything. But it will not mention how the app uses it. For instance, app needs access to gallery. It can do anything possible with the photos. Send, delete, Edit...

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .