Skip to content

Commit 22cddbe

Browse files
authored
Add the use of NSUserDefaults to privacy manifest (#1293)
1 parent 3be556e commit 22cddbe

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

permission_handler_apple/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
## 9.4.2
2+
3+
* Updates the privacy manifest to include the use of the `NSUserDefaults` API.
4+
The permission_handler stores a boolean value to track if permission to always
5+
access the device location has been requested.
6+
17
## 9.4.1
28

3-
* Adds privacy manifest.
9+
* Adds empty privacy manifest.
410

511
## 9.4.0
612

permission_handler_apple/ios/Resources/PrivacyInfo.xcprivacy

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,16 @@
55
<key>NSPrivacyTrackingDomains</key>
66
<array/>
77
<key>NSPrivacyAccessedAPITypes</key>
8-
<array/>
8+
<array>
9+
<dict>
10+
<key>NSPrivacyAccessedAPIType</key>
11+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
12+
<key>NSPrivacyAccessedAPITypeReasons</key>
13+
<array>
14+
<string>1C8F.1</string>
15+
</array>
16+
</dict>
17+
</array>
918
<key>NSPrivacyCollectedDataTypes</key>
1019
<array/>
1120
<key>NSPrivacyTracking</key>

permission_handler_apple/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: permission_handler_apple
22
description: Permission plugin for Flutter. This plugin provides the iOS API to request and check permissions.
33
repository: https://github.com/baseflow/flutter-permission-handler
44
issue_tracker: https://github.com/Baseflow/flutter-permission-handler/issues
5-
version: 9.4.1
5+
version: 9.4.2
66

77

88
environment:

0 commit comments

Comments
 (0)