Skip to content

Commit 3269c97

Browse files
authored
Add PrivacyInfo manifest file (#552)
* Add PrivacyInfo manifest file * Update package file
1 parent 0f5eaf8 commit 3269c97

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

Package.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ let package = Package(
1717
targets: [
1818
.target(
1919
name: "SkeletonView",
20-
path: "SkeletonViewCore/Sources"
20+
path: "SkeletonViewCore/Sources",
21+
resources: [.copy("Supporting Files/PrivacyInfo.xcprivacy")],
2122
),
2223
.testTarget(
2324
name: "SkeletonViewTests",

SkeletonView.xcodeproj/project.pbxproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 52;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -153,6 +153,7 @@
153153
/* End PBXContainerItemProxy section */
154154

155155
/* Begin PBXFileReference section */
156+
0AEC95C32AF537B600CD241A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
156157
F5225F29278C2BCE0061A9B0 /* SkeletonTextNumberOfLines.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SkeletonTextNumberOfLines.swift; sourceTree = "<group>"; };
157158
F53D731726D399E100249D46 /* SkeletonTreeNode+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "SkeletonTreeNode+Extensions.swift"; sourceTree = "<group>"; };
158159
F53D731A26D3A35100249D46 /* SkeletonExtended.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SkeletonExtended.swift; sourceTree = "<group>"; };
@@ -349,6 +350,7 @@
349350
isa = PBXGroup;
350351
children = (
351352
F556F56226CD1D8500A80B83 /* Info.plist */,
353+
0AEC95C32AF537B600CD241A /* PrivacyInfo.xcprivacy */,
352354
);
353355
path = "Supporting Files";
354356
sourceTree = "<group>";
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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>NSPrivacyTrackingDomains</key>
8+
<array/>
9+
<key>NSPrivacyCollectedDataTypes</key>
10+
<array/>
11+
<key>NSPrivacyAccessedAPITypes</key>
12+
<array>
13+
<dict>
14+
<key>NSPrivacyAccessedAPIType</key>
15+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
16+
<key>NSPrivacyAccessedAPITypeReasons</key>
17+
<array>
18+
<string>CA92.1</string>
19+
</array>
20+
</dict>
21+
</array>
22+
</dict>
23+
</plist>

0 commit comments

Comments
 (0)