Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 0ca2f38

Browse files
authored
Fix NSPrivacyCollectedDataTypes array in privacy manifest (#49041)
In #48951 `NSPrivacyCollectedDataTypes` is an array with an empty dictionary, but the privacy report wants an empty array or it errors: <img width="523" alt="Screenshot 2023-12-14 at 10 02 52�AM" src="https://github.com/flutter/flutter/assets/682784/a128b384-db2f-49d7-8b71-7965f2826de8"> When this is fixed the privacy report is blank, but that seems to be an Xcode bug? Will investigate. [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
1 parent 2140942 commit 0ca2f38

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

shell/platform/darwin/ios/framework/PrivacyInfo.xcprivacy

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
<key>NSPrivacyTrackingDomains</key>
88
<array/>
99
<key>NSPrivacyCollectedDataTypes</key>
10-
<array>
11-
<dict/>
12-
</array>
10+
<array/>
1311
<key>NSPrivacyAccessedAPITypes</key>
1412
<array>
1513
<dict>

0 commit comments

Comments
 (0)