Skip to content

Commit

Permalink
Add PrivacyInfo manifest file (#552)
Browse files Browse the repository at this point in the history
* Add PrivacyInfo manifest file

* Update package file
  • Loading branch information
kdvmgn committed Jan 15, 2024
1 parent 0f5eaf8 commit 3269c97
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ let package = Package(
targets: [
.target(
name: "SkeletonView",
path: "SkeletonViewCore/Sources"
path: "SkeletonViewCore/Sources",
resources: [.copy("Supporting Files/PrivacyInfo.xcprivacy")],
),
.testTarget(
name: "SkeletonViewTests",
Expand Down
4 changes: 3 additions & 1 deletion SkeletonView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 52;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -153,6 +153,7 @@
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
0AEC95C32AF537B600CD241A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
F5225F29278C2BCE0061A9B0 /* SkeletonTextNumberOfLines.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SkeletonTextNumberOfLines.swift; sourceTree = "<group>"; };
F53D731726D399E100249D46 /* SkeletonTreeNode+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "SkeletonTreeNode+Extensions.swift"; sourceTree = "<group>"; };
F53D731A26D3A35100249D46 /* SkeletonExtended.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SkeletonExtended.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -349,6 +350,7 @@
isa = PBXGroup;
children = (
F556F56226CD1D8500A80B83 /* Info.plist */,
0AEC95C32AF537B600CD241A /* PrivacyInfo.xcprivacy */,
);
path = "Supporting Files";
sourceTree = "<group>";
Expand Down
23 changes: 23 additions & 0 deletions SkeletonViewCore/Sources/Supporting Files/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>CA92.1</string>
</array>
</dict>
</array>
</dict>
</plist>

0 comments on commit 3269c97

Please sign in to comment.