Skip to content

Commit

Permalink
Add the use of NSUserDefaults to privacy manifest (#1293)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanbeusekom committed Mar 21, 2024
1 parent 3be556e commit 22cddbe
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
8 changes: 7 additions & 1 deletion permission_handler_apple/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## 9.4.2

* Updates the privacy manifest to include the use of the `NSUserDefaults` API.
The permission_handler stores a boolean value to track if permission to always
access the device location has been requested.

## 9.4.1

* Adds privacy manifest.
* Adds empty privacy manifest.

## 9.4.0

Expand Down
11 changes: 10 additions & 1 deletion permission_handler_apple/ios/Resources/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>1C8F.1</string>
</array>
</dict>
</array>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyTracking</key>
Expand Down
2 changes: 1 addition & 1 deletion permission_handler_apple/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: permission_handler_apple
description: Permission plugin for Flutter. This plugin provides the iOS API to request and check permissions.
repository: https://github.com/baseflow/flutter-permission-handler
issue_tracker: https://github.com/Baseflow/flutter-permission-handler/issues
version: 9.4.1
version: 9.4.2


environment:
Expand Down

0 comments on commit 22cddbe

Please sign in to comment.