Hey @PareshKarnawat
You need to place the xcprivacy outside of your framework and reference it in your podspec. For example, if the structure of your repository is as follows:
MyFramework.xcframework
Resources/PrivacyInfo.xcprivacy
Your podspec should be something like this:
Pod::Spec.new do |s|
s.name = 'MyFramework'
... other podspec properties ...
s.vendored_frameworks = 'MyFramework.xcframework'
s.resource_bundles = {'MyFramework_Privacy' => ['Resources/PrivacyInfo.xcprivacy']}
end
This setup ensures that a bundle called MyFramework_Privacy is added to the host application and it's PrivacyInfo.xcprivacy considered when generating the Privacy Report.