iPad remembering camera permissions after delete—how to clear?

IosIpadPermissionsCameraIos Permissions

Ios Problem Overview


I'm trying to recreate the condition where the following code returns AVAuthorizationStatusNotDetermined:

AVAuthorizationStatus authStatus = [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo];

However, the iPad appears to remember camera permissions even after the app is deleted and reinstalled, and so either Authorized or NotAuthorized is returned every time. Any idea how to reset the permissions so that NotDetermined is returned?

Thanks for reading.

Ios Solutions


Solution 1 - Ios

You can't reset the permission programmatically. If you want to reset the permission there are two ways:

  1. Reset the OS
  2. Uninstall the app and wait for a day

I know both of those options are really not helpful for a developer, if they are trying to test it out something.

There are three alternatives for testing your app's first run scenario without resetting the entire OS or waiting a day.

First option

As described in Technical Note TN2265 :

> You can achieve the latter without actually waiting a day by following these steps: > > - Delete your app from the device. > - Turn the device off completely and turn it back on. > - Go to Settings > General > Date & Time and set the date ahead a day or more. > - Turn the device off completely again and turn it back on.

Second option

When you delete an app the iOS keeps the permission of your app mapped to your app's bundle id, it keeps the data for day. So you can also change your app's bundle id to test it out.

Third Option

As suggested by @rmaddy in the comment you can reset all location and privacy permissions : Settings -> General -> Reset -> Reset Location & Privacy. Note that this will reset all location and privacy permissions for all the apps on that device.

Solution 2 - Ios

This is no longer an issue if you update OS version on your device to the latest. It didnt work on 13.3.1 but it did clear permissions after 13.4.1

Solution 3 - Ios

On iOS 14 go to Settings->Privacy->Location Services, select the app and for allow location access pick "Ask Next Time"

enter image description here

Solution 4 - Ios

What worked for me:

Windows -> Devices And Simulators -> Installed Apps section

Remove the app from there using the - button.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRogareView Question on Stackoverflow
Solution 1 - IosMidhun MPView Answer on Stackoverflow
Solution 2 - IosJay SeongView Answer on Stackoverflow
Solution 3 - IosmalhalView Answer on Stackoverflow
Solution 4 - IosMooshyView Answer on Stackoverflow