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

Commit 60a7a7c

Browse files
Add privacy manifest (#2735)
* Add privacy manifest * Update PrivacyAccessedAPITypes in privacy manifest * Reformat code * Update NSPrivacyAccessedAPICategoryUserDefaults
1 parent acb9538 commit 60a7a7c

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

ios/CodePush.xcodeproj/project.pbxproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@
231231
F886644B1F4AD1EE0036D01B /* JWTErrorDescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTErrorDescription.h; sourceTree = "<group>"; };
232232
F886644C1F4AD1EE0036D01B /* JWTErrorDescription.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTErrorDescription.m; sourceTree = "<group>"; };
233233
F886647B1F4ADB500036D01B /* libCodePush.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libCodePush.a; sourceTree = BUILT_PRODUCTS_DIR; };
234+
FF90DEF92C5A808600CA8692 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
234235
/* End PBXFileReference section */
235236

236237
/* Begin PBXFrameworksBuildPhase section */
@@ -319,6 +320,7 @@
319320
58B511D21A9E6C8500147676 = {
320321
isa = PBXGroup;
321322
children = (
323+
FF90DEF92C5A808600CA8692 /* PrivacyInfo.xcprivacy */,
322324
5498D8F51D21F14100B5EB43 /* CodePushUtils.m */,
323325
13BE3DEC1AC21097009241FE /* CodePush.h */,
324326
13BE3DED1AC21097009241FE /* CodePush.m */,
@@ -625,6 +627,7 @@
625627
developmentRegion = English;
626628
hasScannedForEncodings = 0;
627629
knownRegions = (
630+
English,
628631
en,
629632
);
630633
mainGroup = 58B511D21A9E6C8500147676;

ios/PrivacyInfo.xcprivacy

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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>NSPrivacyTracking</key>
6+
<false />
7+
<key>NSPrivacyCollectedDataTypes</key>
8+
<array />
9+
<key>NSPrivacyTrackingDomains</key>
10+
<array />
11+
<key>NSPrivacyAccessedAPITypes</key>
12+
<array>
13+
<dict>
14+
<key>NSPrivacyAccessedAPIType</key>
15+
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
16+
<key>NSPrivacyAccessedAPITypeReasons</key>
17+
<array>
18+
<string>0A2A.1</string>
19+
</array>
20+
</dict>
21+
<dict>
22+
<key>NSPrivacyAccessedAPIType</key>
23+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
24+
<key>NSPrivacyAccessedAPITypeReasons</key>
25+
<array>
26+
<string>CA92.1</string>
27+
</array>
28+
</dict>
29+
</array>
30+
</dict>
31+
</plist>

0 commit comments

Comments
 (0)