OneSignal / OneSignal-iOS-SDK

OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your native iOS app with OneSignal. https://onesignal.com
Other
496 stars 263 forks source link

[question]: Privacy Manifest not being shown when i install using cocoapods is this bugs do i have to manually download manifest file on my project when i installed it only 8 file are being generated. #1477

Open huzaifaios opened 2 months ago

huzaifaios commented 2 months ago

How can we help?

  1. OneSignal_Core
  2. OneSignal_Extension
  3. OneSignal_LiveActivities
  4. OneSignal_Notifications
  5. OneSignal_OSCore
  6. OneSignal_Outcomes
  7. OneSignal_User
  8. OneSignal_XCFramework

Only file with these names are being install not the other file which i can see when i download the project. Kindly check this for me and let me know. these files does not have manifest file other files have manifest file on them do i have to separately download it and add on my codebase.

Code of Conduct

emawby commented 2 months ago

@huzaifaios Could you share your podfile? The privacy manifest should be bundled in the XCFramework that is used by the Cocoapod as a PrivacyInfo.xcprivacy file. It may be because you are using static instead of dynamic frameworks?

huzaifaios commented 1 month ago

@huzaifaios Could you share your podfile? The privacy manifest should be bundled in the XCFramework that is used by the Cocoapod as a PrivacyInfo.xcprivacy file. It may be because you are using static instead of dynamic frameworks?

I have to manually add privacy file on my ios project.

albertreed commented 2 weeks ago

We're using Dynamic Frameworks and that did not address the issue. We're going to cease being able to update as of Nov 12th. Any update on this?

albertreed commented 2 weeks ago

@emawby sorry - realized you wanted a sample podfile. This is ours:

platform :ios, '13.0'

target 'Subterfuge' do
  use_frameworks!

  pod 'OneSignal/OneSignal', '5.1.6'
end