Skip to content

Commit 3be556e

Browse files
authored
Adds iOS privacy manifest. (#1291)
1 parent 842761c commit 3be556e

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

permission_handler_apple/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 9.4.1
2+
3+
* Adds privacy manifest.
4+
15
## 9.4.0
26

37
* Adds a new permission `Permission.backgroundRefresh` to check the background refresh permission status.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSPrivacyTrackingDomains</key>
6+
<array/>
7+
<key>NSPrivacyAccessedAPITypes</key>
8+
<array/>
9+
<key>NSPrivacyCollectedDataTypes</key>
10+
<array/>
11+
<key>NSPrivacyTracking</key>
12+
<false/>
13+
</dict>
14+
</plist>

permission_handler_apple/ios/permission_handler_apple.podspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@ Permission plugin for Flutter. This plugin provides a cross-platform (iOS, Andro
1818

1919
s.ios.deployment_target = '8.0'
2020
s.static_framework = true
21+
s.resource_bundles = {'permission_handler_apple_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
2122
end
2223

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.0
5+
version: 9.4.1
66

77

88
environment:

0 commit comments

Comments
 (0)