You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 2.7.0 release added a privacy manifest, but its current setup with CocoaPods is causing collisions with other privacy manifest files as you can see below:
I believe this is because the PrivacyInfo.xcprivacy is referenced as a resource in the podspec instead of using resource_bundle. The latter would avoid collisions by putting the privacy manifest file in subfolders for each dependency, instead of going in the app bundle's root. More context on this here. I think the fix would be to simple swap resource with resource_bundle here.
The text was updated successfully, but these errors were encountered:
The
2.7.0
release added a privacy manifest, but its current setup with CocoaPods is causing collisions with other privacy manifest files as you can see below:I believe this is because the
PrivacyInfo.xcprivacy
is referenced as aresource
in the podspec instead of usingresource_bundle
. The latter would avoid collisions by putting the privacy manifest file in subfolders for each dependency, instead of going in the app bundle's root. More context on this here. I think the fix would be to simple swapresource
withresource_bundle
here.The text was updated successfully, but these errors were encountered: