Is your feature request related to a problem? Please describe.
Apple requires the PrivacyInfo.xcprivacyprivacy manifest file which you already have in the root of this repo, however, its not included in the built package.
Describe the solution you'd like
you need to add something like: s.resource_bundles = {'SnowplowTracker_Privacy' => ['PrivacyInfo.xcprivacy']} to the SnowplowTracker.podspec. Other dependencies we have export the privacy manifest file fine using the above resource_bundle declaration.
I need the PrivacyInfo.xcprivacy to be exported during the build of my framework and i have a dependency to snowplow. My real dependency is to snowplow but that depends on this package.
Describe alternatives you've considered
I just forked the repo as a workaround, which is not ideal in the long run.
Is your feature request related to a problem? Please describe. Apple requires the
PrivacyInfo.xcprivacy
privacy manifest file which you already have in the root of this repo, however, its not included in the built package.Describe the solution you'd like you need to add something like:
s.resource_bundles = {'SnowplowTracker_Privacy' => ['PrivacyInfo.xcprivacy']}
to the SnowplowTracker.podspec. Other dependencies we have export the privacy manifest file fine using the above resource_bundle declaration.I need the PrivacyInfo.xcprivacy to be exported during the build of my framework and i have a dependency to snowplow. My real dependency is to snowplow but that depends on this package.
Describe alternatives you've considered I just forked the repo as a workaround, which is not ideal in the long run.
Additional context