Skip to content

Commit

Permalink
Merge pull request #180 from danielepantaleone/main
Browse files Browse the repository at this point in the history
Added privacy manifest file
  • Loading branch information
hmlongco authored Feb 2, 2024
2 parents 8575873 + 28c7a86 commit 17dfb97
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions Factory.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Pod::Spec.new do |s|
s.author = "Michael Long"
s.source = { :git => "https://github.com/hmlongco/Factory.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"
s.resources = "Sources/**/*.xcprivacy"
s.swift_version = '5.7'

s.ios.deployment_target = "12.0"
Expand Down
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "Factory",
dependencies: []),
dependencies: [],
resources: [.copy("PrivacyInfo.xcprivacy")]),
.testTarget(
name: "FactoryTests",
dependencies: ["Factory"]),
Expand Down
14 changes: 14 additions & 0 deletions Sources/Factory/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?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>
</plist>

0 comments on commit 17dfb97

Please sign in to comment.