-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Privacy Manifest for iOS #437
base: master
Are you sure you want to change the base?
Added Privacy Manifest for iOS #437
Conversation
KaustubhKulkarni2202
commented
Mar 26, 2024
- Adds a privacy manifest.
- Updates Package.swift to include the privacy manifest
- Updates podspec to include the privacy manifest
Thanks! Maybe this will be the push I need to get our CI working again. I have an old WIP PR at #433 that I might dust off. |
@@ -35,6 +37,7 @@ let package = Package( | |||
], | |||
resources: [ | |||
.process("Resources"), | |||
.copy("PrivacyInfo.xcprivacy"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this needed in the test target?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not needed
), | ||
exclude: ["Info.plist"], | ||
resources: [ | ||
.copy("PrivacyInfo.xcprivacy"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why copy
instead of process
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As we are not applying a platform-specific rule to the resource we need copy of it.