You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On macOS 14 and newer, your app’s `Info.plist` file must provide a value for the `NSRemindersFullAccessUsageDescription` key that explains to the user why your app is
203
+
requesting Reminders access.
204
+
205
+
```plist
206
+
<key>NSRemindersFullAccessUsageDescription</key>
207
+
<string>Your reason for wanting access to read and write Reminders data.</string>
208
+
```
209
+
202
210
### `permissions.askForFoldersAccess(folder)`
203
211
204
212
-`type` String - The folder to which you are requesting access. Can be one of `desktop`, `documents`, or `downloads`.
@@ -291,7 +299,7 @@ Checks the authorization status for input monitoring access. If the status check
291
299
-`not determined` - A dialog will be displayed directing the user to the `Locatiojn` System Preferences window , where the user can approve your app to access location events in the background.
292
300
-`denied` - The `Location` System Preferences window is opened with the Location privacy key highlighted.
293
301
294
-
Your app must provide an explanation for its use of capture devices using the `NSLocationUsageDescription``Info.plist` key; Calling this method or attempting to access location without a usage description raises an exception.
302
+
Your app must provide an explanation for its use of location using either the `NSLocationUsageDescription``Info.plist` key; Calling this method or attempting to access location without a usage description raises an exception.
0 commit comments