Skip to content

Commit 2cb9a7d

Browse files
committed
docs: add Reminders plist key
1 parent 3c61214 commit 2cb9a7d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,14 @@ askForRemindersAccess().then(status => {
199199
})
200200
```
201201

202+
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+
202210
### `permissions.askForFoldersAccess(folder)`
203211

204212
- `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
291299
- `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.
292300
- `denied` - The `Location` System Preferences window is opened with the Location privacy key highlighted.
293301

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.
295303

296304
```plist
297305
<key>NSLocationUsageDescription</key>

0 commit comments

Comments
 (0)