├── .github ├── ISSUE_TEMPLATE │ ├── ask-question.yml │ ├── bug-report.yml │ └── general-feedback.yml ├── os_probot_metadata.js ├── pull_request_template.md ├── release-drafter.yml ├── set_response_times.js └── workflows │ ├── Zapier.yml │ ├── project.yml │ ├── release-drafter.yml │ └── set_response_time.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── MIGRATION_GUIDE.md ├── OneSignal.sln ├── OneSignalSDK.DotNet.Android.Core.Binding ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── AboutJars.txt │ └── core-release.aar ├── OneSignalSDK.DotNet.Android.Core.Binding.csproj └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── OneSignalSDK.DotNet.Android.InAppMessages.Binding ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── AboutJars.txt │ └── in-app-messages-release.aar ├── OneSignalSDK.DotNet.Android.InAppMessages.Binding.csproj └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── OneSignalSDK.DotNet.Android.Location.Binding ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── AboutJars.txt │ └── location-release.aar ├── OneSignalSDK.DotNet.Android.Location.Binding.csproj └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── OneSignalSDK.DotNet.Android.Notifications.Binding ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── AboutJars.txt │ └── notifications-release.aar ├── OneSignalSDK.DotNet.Android.Notifications.Binding.csproj └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── OneSignalSDK.DotNet.Android ├── AndroidDebugManager.cs ├── AndroidInAppMessagesManager.cs ├── AndroidLiveActivitiesManager.cs ├── AndroidLocationManager.cs ├── AndroidNotificationsManager.cs ├── AndroidOneSignal.cs ├── AndroidSessionManager.cs ├── AndroidUserManager.cs ├── OneSignalSDK.DotNet.Android.csproj └── Utilities │ ├── AndroidConsumer.cs │ ├── FromNativeConversion.cs │ └── ToNativeConversion.cs ├── OneSignalSDK.DotNet.Core ├── Debug │ ├── IDebugManager.cs │ └── LogLevel.cs ├── IOneSignal.cs ├── InAppMessages │ ├── IInAppMessagesManager.cs │ ├── InAppMessage.cs │ ├── InAppMessageClickResult.cs │ ├── InAppMessageClickedEventArgs.cs │ └── InAppMessageLifecycleEventArgs.cs ├── Internal │ └── Utilities │ │ ├── Json.cs │ │ └── WrapperSDK.cs ├── LiveActivities │ └── ILiveActivities.cs ├── Location │ └── ILocationManager.cs ├── Notifications │ ├── DisplayableNotification.cs │ ├── INotificationsManager.cs │ ├── Notification.cs │ ├── NotificationClickResult.cs │ ├── NotificationClickedEventArgs.cs │ ├── NotificationPermission.cs │ ├── NotificationPermissionChangedEventArgs.cs │ └── NotificationWillDisplayEventArgs.cs ├── OneSignalSDK.DotNet.Core.csproj ├── Session │ └── ISessionManager.cs └── User │ ├── IUserManager.cs │ ├── IUserState.cs │ ├── Subscriptions │ ├── IPushSubscription.cs │ ├── IPushSubscriptionState.cs │ └── PushSubscriptionChangedEventArgs.cs │ └── UserStateChangedEventArgs.cs ├── OneSignalSDK.DotNet.iOS.Binding ├── ApiDefinitions.cs ├── OneSignalCore.xcframework │ ├── Info.plist │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── ios-arm64 │ │ └── OneSignalCore.framework │ │ │ ├── Headers │ │ │ ├── NSDateFormatter+OneSignal.h │ │ │ ├── NSString+OneSignal.h │ │ │ ├── NSURL+OneSignal.h │ │ │ ├── OSBundleUtils.h │ │ │ ├── OSDeviceUtils.h │ │ │ ├── OSDialogInstanceManager.h │ │ │ ├── OSInAppMessages.h │ │ │ ├── OSJSONHandling.h │ │ │ ├── OSLocation.h │ │ │ ├── OSMacros.h │ │ │ ├── OSNetworkingUtils.h │ │ │ ├── OSNotification+Internal.h │ │ │ ├── OSNotification.h │ │ │ ├── OSNotificationClasses.h │ │ │ ├── OSObservable.h │ │ │ ├── OSPrivacyConsentController.h │ │ │ ├── OSRemoteParamController.h │ │ │ ├── OSRequests.h │ │ │ ├── OneSignalClient.h │ │ │ ├── OneSignalCommonDefines.h │ │ │ ├── OneSignalConfigManager.h │ │ │ ├── OneSignalCore.h │ │ │ ├── OneSignalCoreHelper.h │ │ │ ├── OneSignalLog.h │ │ │ ├── OneSignalMobileProvision.h │ │ │ ├── OneSignalRequest.h │ │ │ ├── OneSignalSelectorHelpers.h │ │ │ ├── OneSignalTrackFirebaseAnalytics.h │ │ │ ├── OneSignalUserDefaults.h │ │ │ ├── OneSignalWrapper.h │ │ │ └── SwizzlingForwarder.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── OneSignalCore │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalCore.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── OneSignalCore │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── NSDateFormatter+OneSignal.h │ │ │ │ ├── NSString+OneSignal.h │ │ │ │ ├── NSURL+OneSignal.h │ │ │ │ ├── OSBundleUtils.h │ │ │ │ ├── OSDeviceUtils.h │ │ │ │ ├── OSDialogInstanceManager.h │ │ │ │ ├── OSInAppMessages.h │ │ │ │ ├── OSJSONHandling.h │ │ │ │ ├── OSLocation.h │ │ │ │ ├── OSMacros.h │ │ │ │ ├── OSNetworkingUtils.h │ │ │ │ ├── OSNotification+Internal.h │ │ │ │ ├── OSNotification.h │ │ │ │ ├── OSNotificationClasses.h │ │ │ │ ├── OSObservable.h │ │ │ │ ├── OSPrivacyConsentController.h │ │ │ │ ├── OSRemoteParamController.h │ │ │ │ ├── OSRequests.h │ │ │ │ ├── OneSignalClient.h │ │ │ │ ├── OneSignalCommonDefines.h │ │ │ │ ├── OneSignalConfigManager.h │ │ │ │ ├── OneSignalCore.h │ │ │ │ ├── OneSignalCoreHelper.h │ │ │ │ ├── OneSignalLog.h │ │ │ │ ├── OneSignalMobileProvision.h │ │ │ │ ├── OneSignalRequest.h │ │ │ │ ├── OneSignalSelectorHelpers.h │ │ │ │ ├── OneSignalTrackFirebaseAnalytics.h │ │ │ │ ├── OneSignalUserDefaults.h │ │ │ │ ├── OneSignalWrapper.h │ │ │ │ └── SwizzlingForwarder.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── OneSignalCore │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalCore.framework │ │ ├── Headers │ │ ├── NSDateFormatter+OneSignal.h │ │ ├── NSString+OneSignal.h │ │ ├── NSURL+OneSignal.h │ │ ├── OSBundleUtils.h │ │ ├── OSDeviceUtils.h │ │ ├── OSDialogInstanceManager.h │ │ ├── OSInAppMessages.h │ │ ├── OSJSONHandling.h │ │ ├── OSLocation.h │ │ ├── OSMacros.h │ │ ├── OSNetworkingUtils.h │ │ ├── OSNotification+Internal.h │ │ ├── OSNotification.h │ │ ├── OSNotificationClasses.h │ │ ├── OSObservable.h │ │ ├── OSPrivacyConsentController.h │ │ ├── OSRemoteParamController.h │ │ ├── OSRequests.h │ │ ├── OneSignalClient.h │ │ ├── OneSignalCommonDefines.h │ │ ├── OneSignalConfigManager.h │ │ ├── OneSignalCore.h │ │ ├── OneSignalCoreHelper.h │ │ ├── OneSignalLog.h │ │ ├── OneSignalMobileProvision.h │ │ ├── OneSignalRequest.h │ │ ├── OneSignalSelectorHelpers.h │ │ ├── OneSignalTrackFirebaseAnalytics.h │ │ ├── OneSignalUserDefaults.h │ │ ├── OneSignalWrapper.h │ │ └── SwizzlingForwarder.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── OneSignalCore │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources ├── OneSignalExtension.xcframework │ ├── Info.plist │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── ios-arm64 │ │ └── OneSignalExtension.framework │ │ │ ├── Headers │ │ │ ├── OneSignalAttachmentHandler.h │ │ │ ├── OneSignalExtension.h │ │ │ ├── OneSignalExtensionBadgeHandler.h │ │ │ ├── OneSignalNotificationServiceExtensionHandler.h │ │ │ └── OneSignalReceiveReceiptsController.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── OneSignalExtension │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalExtension.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── OneSignalExtension │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── OneSignalAttachmentHandler.h │ │ │ │ ├── OneSignalExtension.h │ │ │ │ ├── OneSignalExtensionBadgeHandler.h │ │ │ │ ├── OneSignalNotificationServiceExtensionHandler.h │ │ │ │ └── OneSignalReceiveReceiptsController.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── OneSignalExtension │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalExtension.framework │ │ ├── Headers │ │ ├── OneSignalAttachmentHandler.h │ │ ├── OneSignalExtension.h │ │ ├── OneSignalExtensionBadgeHandler.h │ │ ├── OneSignalNotificationServiceExtensionHandler.h │ │ └── OneSignalReceiveReceiptsController.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── OneSignalExtension │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources ├── OneSignalFramework.xcframework │ ├── Info.plist │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── ios-arm64 │ │ └── OneSignalFramework.framework │ │ │ ├── Headers │ │ │ ├── OneSignalFramework-Swift.h │ │ │ └── OneSignalFramework.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── OneSignalFramework.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── OneSignalFramework │ │ │ └── PrivacyInfo.xcprivacy │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalFramework.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── OneSignalFramework │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── OneSignalFramework-Swift.h │ │ │ │ └── OneSignalFramework.h │ │ │ ├── Modules │ │ │ │ ├── OneSignalFramework.swiftmodule │ │ │ │ │ ├── arm64-apple-ios-macabi.abi.json │ │ │ │ │ ├── arm64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.abi.json │ │ │ │ │ ├── x86_64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── OneSignalFramework │ │ │ └── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── Current │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalFramework.framework │ │ ├── Headers │ │ ├── OneSignalFramework-Swift.h │ │ └── OneSignalFramework.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── OneSignalFramework.swiftmodule │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ └── module.modulemap │ │ ├── OneSignalFramework │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources ├── OneSignalInAppMessages.xcframework │ ├── Info.plist │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── ios-arm64 │ │ └── OneSignalInAppMessages.framework │ │ │ ├── Headers │ │ │ └── OneSignalInAppMessages.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── OneSignalInAppMessages │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalInAppMessages.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── OneSignalInAppMessages │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ └── OneSignalInAppMessages.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── OneSignalInAppMessages │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalInAppMessages.framework │ │ ├── Headers │ │ └── OneSignalInAppMessages.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── OneSignalInAppMessages │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources ├── OneSignalLiveActivities.xcframework │ ├── Info.plist │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── ios-arm64 │ │ └── OneSignalLiveActivities.framework │ │ │ ├── Headers │ │ │ ├── OneSignalLiveActivities-Swift.h │ │ │ └── OneSignalLiveActivities.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── OneSignalLiveActivities.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── OneSignalLiveActivities │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalLiveActivities.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── OneSignalLiveActivities │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── OneSignalLiveActivities-Swift.h │ │ │ │ └── OneSignalLiveActivities.h │ │ │ ├── Modules │ │ │ │ ├── OneSignalLiveActivities.swiftmodule │ │ │ │ │ ├── arm64-apple-ios-macabi.abi.json │ │ │ │ │ ├── arm64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.abi.json │ │ │ │ │ ├── x86_64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── OneSignalLiveActivities │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalLiveActivities.framework │ │ ├── Headers │ │ ├── OneSignalLiveActivities-Swift.h │ │ └── OneSignalLiveActivities.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── OneSignalLiveActivities.swiftmodule │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ └── module.modulemap │ │ ├── OneSignalLiveActivities │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources ├── OneSignalLocation.xcframework │ ├── Info.plist │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── ios-arm64 │ │ └── OneSignalLocation.framework │ │ │ ├── Headers │ │ │ └── OneSignalLocationManager.h │ │ │ ├── Info.plist │ │ │ ├── OneSignalLocation │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalLocation.framework │ │ │ ├── Headers │ │ │ ├── OneSignalLocation │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ └── OneSignalLocationManager.h │ │ │ ├── OneSignalLocation │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalLocation.framework │ │ ├── Headers │ │ └── OneSignalLocationManager.h │ │ ├── Info.plist │ │ ├── OneSignalLocation │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources ├── OneSignalNotifications.xcframework │ ├── Info.plist │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── ios-arm64 │ │ └── OneSignalNotifications.framework │ │ │ ├── Headers │ │ │ ├── OSNotification+OneSignal.h │ │ │ ├── OSNotificationsManager.h │ │ │ ├── OSPermission.h │ │ │ ├── OneSignalNotificationSettings.h │ │ │ └── OneSignalNotifications.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── OneSignalNotifications │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalNotifications.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── OneSignalNotifications │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── OSNotification+OneSignal.h │ │ │ │ ├── OSNotificationsManager.h │ │ │ │ ├── OSPermission.h │ │ │ │ ├── OneSignalNotificationSettings.h │ │ │ │ └── OneSignalNotifications.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── OneSignalNotifications │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalNotifications.framework │ │ ├── Headers │ │ ├── OSNotification+OneSignal.h │ │ ├── OSNotificationsManager.h │ │ ├── OSPermission.h │ │ ├── OneSignalNotificationSettings.h │ │ └── OneSignalNotifications.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── OneSignalNotifications │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources ├── OneSignalOSCore.xcframework │ ├── Info.plist │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── ios-arm64 │ │ └── OneSignalOSCore.framework │ │ │ ├── Headers │ │ │ ├── OneSignalOSCore-Swift.h │ │ │ └── OneSignalOSCore.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── OneSignalOSCore.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── OneSignalOSCore │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalOSCore.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── OneSignalOSCore │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── OneSignalOSCore-Swift.h │ │ │ │ └── OneSignalOSCore.h │ │ │ ├── Modules │ │ │ │ ├── OneSignalOSCore.swiftmodule │ │ │ │ │ ├── arm64-apple-ios-macabi.abi.json │ │ │ │ │ ├── arm64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.abi.json │ │ │ │ │ ├── x86_64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── OneSignalOSCore │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalOSCore.framework │ │ ├── Headers │ │ ├── OneSignalOSCore-Swift.h │ │ └── OneSignalOSCore.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── OneSignalOSCore.swiftmodule │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ └── module.modulemap │ │ ├── OneSignalOSCore │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources ├── OneSignalOutcomes.xcframework │ ├── Info.plist │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── ios-arm64 │ │ └── OneSignalOutcomes.framework │ │ │ ├── Headers │ │ │ ├── OSCachedUniqueOutcome.h │ │ │ ├── OSChannelTracker.h │ │ │ ├── OSFocusInfluenceParam.h │ │ │ ├── OSInAppMessageOutcome.h │ │ │ ├── OSIndirectInfluence.h │ │ │ ├── OSInfluence.h │ │ │ ├── OSInfluenceDataDefines.h │ │ │ ├── OSInfluenceDataRepository.h │ │ │ ├── OSOutcomeEvent.h │ │ │ ├── OSOutcomeEventParams.h │ │ │ ├── OSOutcomeEventsCache.h │ │ │ ├── OSOutcomeEventsFactory.h │ │ │ ├── OSOutcomeEventsRepository.h │ │ │ ├── OSOutcomeSource.h │ │ │ ├── OSOutcomeSourceBody.h │ │ │ ├── OSSessionManager.h │ │ │ ├── OSTrackerFactory.h │ │ │ ├── OneSignalOutcomeEventsController.h │ │ │ └── OneSignalOutcomes.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── OneSignalOutcomes │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalOutcomes.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── OneSignalOutcomes │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── OSCachedUniqueOutcome.h │ │ │ │ ├── OSChannelTracker.h │ │ │ │ ├── OSFocusInfluenceParam.h │ │ │ │ ├── OSInAppMessageOutcome.h │ │ │ │ ├── OSIndirectInfluence.h │ │ │ │ ├── OSInfluence.h │ │ │ │ ├── OSInfluenceDataDefines.h │ │ │ │ ├── OSInfluenceDataRepository.h │ │ │ │ ├── OSOutcomeEvent.h │ │ │ │ ├── OSOutcomeEventParams.h │ │ │ │ ├── OSOutcomeEventsCache.h │ │ │ │ ├── OSOutcomeEventsFactory.h │ │ │ │ ├── OSOutcomeEventsRepository.h │ │ │ │ ├── OSOutcomeSource.h │ │ │ │ ├── OSOutcomeSourceBody.h │ │ │ │ ├── OSSessionManager.h │ │ │ │ ├── OSTrackerFactory.h │ │ │ │ ├── OneSignalOutcomeEventsController.h │ │ │ │ └── OneSignalOutcomes.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── OneSignalOutcomes │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalOutcomes.framework │ │ ├── Headers │ │ ├── OSCachedUniqueOutcome.h │ │ ├── OSChannelTracker.h │ │ ├── OSFocusInfluenceParam.h │ │ ├── OSInAppMessageOutcome.h │ │ ├── OSIndirectInfluence.h │ │ ├── OSInfluence.h │ │ ├── OSInfluenceDataDefines.h │ │ ├── OSInfluenceDataRepository.h │ │ ├── OSOutcomeEvent.h │ │ ├── OSOutcomeEventParams.h │ │ ├── OSOutcomeEventsCache.h │ │ ├── OSOutcomeEventsFactory.h │ │ ├── OSOutcomeEventsRepository.h │ │ ├── OSOutcomeSource.h │ │ ├── OSOutcomeSourceBody.h │ │ ├── OSSessionManager.h │ │ ├── OSTrackerFactory.h │ │ ├── OneSignalOutcomeEventsController.h │ │ └── OneSignalOutcomes.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── OneSignalOutcomes │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources ├── OneSignalSDK.DotNet.iOS.Binding.csproj ├── OneSignalSDK.DotNet.iOS.Binding.sln ├── OneSignalSDK.dotnet.targets ├── OneSignalUser.xcframework │ ├── Info.plist │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── ios-arm64 │ │ └── OneSignalUser.framework │ │ │ ├── Headers │ │ │ ├── OneSignalUser-Swift.h │ │ │ └── OneSignalUser.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── OneSignalUser.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── OneSignalUser │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalUser.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── OneSignalUser │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── OneSignalUser-Swift.h │ │ │ │ └── OneSignalUser.h │ │ │ ├── Modules │ │ │ │ ├── OneSignalUser.swiftmodule │ │ │ │ │ ├── arm64-apple-ios-macabi.abi.json │ │ │ │ │ ├── arm64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.abi.json │ │ │ │ │ ├── x86_64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── OneSignalUser │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalUser.framework │ │ ├── Headers │ │ ├── OneSignalUser-Swift.h │ │ └── OneSignalUser.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── OneSignalUser.swiftmodule │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ └── module.modulemap │ │ ├── OneSignalUser │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources └── StructsAndEnums.cs ├── OneSignalSDK.DotNet.iOS ├── Info.plist ├── NotificationServiceExtension.cs ├── OneSignalSDK.DotNet.iOS.csproj ├── Utilities │ ├── CallbackProxy.cs │ ├── FromNativeConversion.cs │ └── ToNativeConversion.cs ├── iOSDebugManager.cs ├── iOSInAppMessagesManager.cs ├── iOSLiveActivitiesManager.cs ├── iOSLocationManager.cs ├── iOSNotificationsManager.cs ├── iOSOneSignal.cs ├── iOSSessionManager.cs └── iOSUserManager.cs ├── OneSignalSDK.DotNet.nuspec ├── OneSignalSDK.DotNet ├── OneSignal.cs └── OneSignalSDK.DotNet.csproj ├── README.md ├── Samples ├── LIVE_ACTIVITIES.md ├── OneSignalApp │ ├── .vscode │ │ └── launch.json │ ├── AddOutcomePage.xaml │ ├── AddOutcomePage.xaml.cs │ ├── AddPairPage.xaml │ ├── AddPairPage.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Converters │ │ └── BoolNotConverter.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Models │ │ ├── AddOutcomePageModel.cs │ │ ├── AddPairPageModel.cs │ │ └── MainPageModel.cs │ ├── OneSignalApp.csproj │ ├── OneSignalApp.sln │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ ├── Resources │ │ │ │ └── values │ │ │ │ │ └── colors.xml │ │ │ └── google-services.json │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ └── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Resources │ │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ │ ├── Images │ │ └── dotnet_bot.svg │ │ ├── Raw │ │ └── AboutAssets.txt │ │ ├── Splash │ │ └── splash.svg │ │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml ├── OneSignalDevApp │ ├── AddOutcomePage.xaml │ ├── AddOutcomePage.xaml.cs │ ├── AddPairPage.xaml │ ├── AddPairPage.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── Converters │ │ └── BoolNotConverter.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Models │ │ ├── AddOutcomePageModel.cs │ │ ├── AddPairPageModel.cs │ │ └── MainPageModel.cs │ ├── OneSignalDevApp.csproj │ ├── OneSignalDevApp.sln │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ └── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── Resources │ │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ │ ├── Images │ │ └── dotnet_bot.png │ │ ├── Raw │ │ └── AboutAssets.txt │ │ ├── Splash │ │ └── splash.svg │ │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml ├── OneSignalNotificationServiceExtension │ ├── Entitlements.plist │ ├── Info.plist │ ├── NotificationService.cs │ └── OneSignalNotificationServiceExtension.csproj └── native │ └── example │ ├── ExampleWidget │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── WidgetBackground.colorset │ │ │ └── Contents.json │ │ └── onesignaldemo.imageset │ │ │ ├── Contents.json │ │ │ └── onesignal-logo.png │ ├── ExampleWidgetBundle.swift │ ├── ExampleWidgetLiveActivity.swift │ └── Info.plist │ ├── Podfile │ ├── Podfile.lock │ ├── example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── briansmith.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── ExampleWidgetExtension.xcscheme │ │ │ └── example.xcscheme │ └── xcuserdata │ │ └── briansmith.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── example.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── briansmith.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ └── example │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── example.entitlements │ └── exampleApp.swift ├── Testing └── ProtoIntegrationTest.cs ├── nuget_icon.png └── update_native_binaries.sh /.github/ISSUE_TEMPLATE/ask-question.yml: -------------------------------------------------------------------------------- 1 | name: 🙋‍♂️ Ask a question 2 | description: Tell us what's on your mind 3 | title: "[question]: " 4 | labels: ["Question"] 5 | 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | Having issues integrating this SDK? 11 | - type: textarea 12 | id: question 13 | attributes: 14 | label: How can we help? 15 | description: Specific question regarding integrating this SDK. 16 | placeholder: How do I...? 17 | validations: 18 | required: true 19 | - type: checkboxes 20 | id: terms 21 | attributes: 22 | label: Code of Conduct 23 | description: By submitting this issue, you agree to follow our [Code of Conduct](https://onesignal.com/code-of-conduct) 24 | options: 25 | - label: I agree to follow this project's Code of Conduct 26 | required: true 27 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general-feedback.yml: -------------------------------------------------------------------------------- 1 | name: 📣 General feedback 2 | description: Tell us what's on your mind 3 | title: "[General]: " 4 | labels: ["Feedback"] 5 | 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | Thanks for sharing your valuable feedback! 11 | - type: textarea 12 | id: feedback 13 | attributes: 14 | label: What's on your mind? 15 | description: Feedback regarding this SDK. 16 | placeholder: Share your feedback... 17 | validations: 18 | required: true 19 | - type: checkboxes 20 | id: terms 21 | attributes: 22 | label: Code of Conduct 23 | description: By submitting this issue, you agree to follow our [Code of Conduct](https://onesignal.com/code-of-conduct) 24 | options: 25 | - label: I agree to follow this project's Code of Conduct 26 | required: true 27 | -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | name-template: $RESOLVED_VERSION 2 | tag-template: $RESOLVED_VERSION 3 | categories: 4 | - title: 🚀 Features 5 | label: Enhancement / Feature 6 | - title: 🐛 Bug Fixes 7 | label: Bug 8 | - title: 🧰 Improvements 9 | label: Improvement 10 | - title: down arrow Dependency Updates 11 | label: Dependencies 12 | change-template: '- $TITLE (#$NUMBER)' 13 | version-resolver: 14 | major: 15 | labels: 16 | - 'major' 17 | minor: 18 | labels: 19 | - 'minor' 20 | patch: 21 | labels: 22 | - 'patch' 23 | default: patch 24 | template: | 25 | ## Other Changes 26 | 27 | $CHANGES 28 | -------------------------------------------------------------------------------- /.github/workflows/Zapier.yml: -------------------------------------------------------------------------------- 1 | # This is an action to close asana tasks that were generated by Github issues 2 | 3 | name: Zapier web hook 4 | 5 | # Controls when the workflow will run 6 | on: 7 | # Triggers the workflow on push or pull request events but only for the "main" branch 8 | issues: 9 | types: [closed] 10 | 11 | permissions: 12 | issues: read 13 | 14 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 15 | jobs: 16 | # This workflow contains a single job called "build" 17 | build: 18 | # The type of runner that the job will run on 19 | runs-on: ubuntu-latest 20 | 21 | # Steps represent a sequence of tasks that will be executed as part of the job 22 | steps: 23 | # Runs a set of commands using the runners shell 24 | - name: Call Zapier web hook to close Asana task 25 | if: ${{ !github.event.issue.pull_request }} 26 | env: 27 | ISSUE_TITLE: ${{ github.event.issue.title }} 28 | run: | 29 | curl --location --request POST 'https://hooks.zapier.com/hooks/catch/12728683/b7009qc/' \ 30 | --header 'Content-Type: application/json' \ 31 | --header 'Accept: application/json' \ 32 | --data-raw '{ 33 | "task_name" : "$ISSUE_TITLE" 34 | }' 35 | -------------------------------------------------------------------------------- /.github/workflows/project.yml: -------------------------------------------------------------------------------- 1 | name: Add issues to project 2 | 3 | on: 4 | issues: 5 | types: 6 | - opened 7 | 8 | jobs: 9 | add-to-project: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Add issue to project 13 | uses: actions/add-to-project@v1.0.2 14 | with: 15 | # SDK Cross-Platform Project 16 | project-url: https://github.com/orgs/OneSignal/projects/10 17 | github-token: ${{ secrets.GH_PROJECTS_TOKEN }} 18 | -------------------------------------------------------------------------------- /.github/workflows/set_response_time.yml: -------------------------------------------------------------------------------- 1 | name: Set Response Time 2 | on: 3 | issue_comment: 4 | types: 5 | - created 6 | issues: 7 | types: 8 | - closed 9 | jobs: 10 | calculate: 11 | name: set reponse time for the issue 12 | if: github.event.issue.pull_request == null 13 | runs-on: ubuntu-latest 14 | permissions: 15 | issues: write 16 | steps: 17 | - uses: actions/checkout@v3 18 | with: 19 | token: ${{ secrets.GITHUB_TOKEN }} 20 | - run: npm install @octokit/action@6.0.6 21 | - uses: actions/github-script@v6 22 | id: set-time 23 | with: 24 | result-encoding: string 25 | script: | 26 | const os_probot_metadata = require('./.github/os_probot_metadata.js') 27 | const set_response_time = require('./.github/set_response_times.js') 28 | return await set_response_time(context, os_probot_metadata) 29 | env: 30 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 31 | - name: Get result 32 | run: echo "${{steps.set-time.outputs.result}}" >> $GITHUB_STEP_SUMMARY 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Autosave files 2 | *~ 3 | 4 | # build 5 | [Oo]bj/ 6 | [Bb]in/ 7 | DerivedData/ 8 | packages/ 9 | TestResults/ 10 | Pods/ 11 | 12 | # globs 13 | Makefile.in 14 | *.DS_Store 15 | *.sln.cache 16 | *.suo 17 | *.cache 18 | *.pidb 19 | *.userprefs 20 | *.usertasks 21 | config.log 22 | config.make 23 | config.status 24 | aclocal.m4 25 | install-sh 26 | autom4te.cache/ 27 | *.user 28 | *.tar.gz 29 | tarballs/ 30 | test-results/ 31 | Thumbs.db 32 | 33 | # Mac bundle stuff 34 | *.dmg 35 | *.app 36 | 37 | # resharper 38 | *_Resharper.* 39 | *.Resharper 40 | 41 | # dotCover 42 | *.dotCover 43 | 44 | .vs 45 | /Samples/OneSignalApp/ 46 | /Samples/OneSignalApp/ 47 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 OneSignal 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Core.Binding/Jars/AboutJars.txt: -------------------------------------------------------------------------------- 1 | This directory is for Android .jars. 2 | 3 | There are 4 types of jars that are supported: 4 | 5 | == Input Jar and Embedded Jar == 6 | 7 | This is the jar that bindings should be generated for. 8 | 9 | For example, if you were binding the Google Maps library, this would 10 | be Google's "maps.jar". 11 | 12 | The difference between EmbeddedJar and InputJar is, EmbeddedJar is to be 13 | embedded in the resulting dll as EmbeddedResource, while InputJar is not. 14 | There are couple of reasons you wouldn't like to embed the target jar 15 | in your dll (the ones that could be internally loaded by 16 | feature e.g. maps.jar, or you cannot embed jars that are under some 17 | proprietary license). 18 | 19 | Set the build action for these jars in the properties page to "InputJar". 20 | 21 | 22 | == Reference Jar and Embedded Reference Jar == 23 | 24 | These are jars that are referenced by the input jar. C# bindings will 25 | not be created for these jars. These jars will be used to resolve 26 | types used by the input jar. 27 | 28 | NOTE: Do not add "android.jar" as a reference jar. It will be added automatically 29 | based on the Target Framework selected. 30 | 31 | Set the build action for these jars in the properties page to "ReferenceJar". 32 | 33 | "EmbeddedJar" works like "ReferenceJar", but like "EmbeddedJar", it is 34 | embedded in your dll. But at application build time, they are not included 35 | in the final apk, like ReferenceJar files. 36 | 37 | 38 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Core.Binding/Jars/core-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.Android.Core.Binding/Jars/core-release.aar -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Core.Binding/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- 1 |  2 | 18 | 19 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Core.Binding/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- 1 |  2 | 18 | 19 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.InAppMessages.Binding/Jars/in-app-messages-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.Android.InAppMessages.Binding/Jars/in-app-messages-release.aar -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.InAppMessages.Binding/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- 1 |  2 | 18 | 19 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.InAppMessages.Binding/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- 1 |  2 | 18 | 19 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.InAppMessages.Binding/Transforms/Metadata.xml: -------------------------------------------------------------------------------- 1 |  2 | Com.OneSignal.Android.InAppMessages 3 | 4 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Location.Binding/Jars/AboutJars.txt: -------------------------------------------------------------------------------- 1 | This directory is for Android .jars. 2 | 3 | There are 4 types of jars that are supported: 4 | 5 | == Input Jar and Embedded Jar == 6 | 7 | This is the jar that bindings should be generated for. 8 | 9 | For example, if you were binding the Google Maps library, this would 10 | be Google's "maps.jar". 11 | 12 | The difference between EmbeddedJar and InputJar is, EmbeddedJar is to be 13 | embedded in the resulting dll as EmbeddedResource, while InputJar is not. 14 | There are couple of reasons you wouldn't like to embed the target jar 15 | in your dll (the ones that could be internally loaded by 16 | feature e.g. maps.jar, or you cannot embed jars that are under some 17 | proprietary license). 18 | 19 | Set the build action for these jars in the properties page to "InputJar". 20 | 21 | 22 | == Reference Jar and Embedded Reference Jar == 23 | 24 | These are jars that are referenced by the input jar. C# bindings will 25 | not be created for these jars. These jars will be used to resolve 26 | types used by the input jar. 27 | 28 | NOTE: Do not add "android.jar" as a reference jar. It will be added automatically 29 | based on the Target Framework selected. 30 | 31 | Set the build action for these jars in the properties page to "ReferenceJar". 32 | 33 | "EmbeddedJar" works like "ReferenceJar", but like "EmbeddedJar", it is 34 | embedded in your dll. But at application build time, they are not included 35 | in the final apk, like ReferenceJar files. 36 | 37 | 38 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Location.Binding/Jars/location-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.Android.Location.Binding/Jars/location-release.aar -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Location.Binding/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- 1 |  2 | 18 | 19 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Location.Binding/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- 1 |  2 | 18 | 19 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Location.Binding/Transforms/Metadata.xml: -------------------------------------------------------------------------------- 1 |  2 | Com.OneSignal.Android.Location 3 | 4 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Notifications.Binding/Jars/notifications-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.Android.Notifications.Binding/Jars/notifications-release.aar -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Notifications.Binding/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- 1 |  2 | 18 | 19 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Notifications.Binding/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- 1 |  2 | 18 | 19 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android.Notifications.Binding/Transforms/Metadata.xml: -------------------------------------------------------------------------------- 1 |  2 | Com.OneSignal.Android.Notifications 3 | 4 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android/AndroidDebugManager.cs: -------------------------------------------------------------------------------- 1 | using OneSignalSDK.DotNet.Android.Utilities; 2 | using OneSignalSDK.DotNet.Core; 3 | using OneSignalSDK.DotNet.Core.Debug; 4 | 5 | using OneSignalNative = Com.OneSignal.Android.OneSignal; 6 | 7 | namespace OneSignalSDK.DotNet.Android; 8 | 9 | public class AndroidDebugManager : IDebugManager 10 | { 11 | private OneSignalSDK.DotNet.Core.Debug.LogLevel _logLevel = OneSignalSDK.DotNet.Core.Debug.LogLevel.WARN; 12 | private OneSignalSDK.DotNet.Core.Debug.LogLevel _alertLevel = OneSignalSDK.DotNet.Core.Debug.LogLevel.NONE; 13 | 14 | public OneSignalSDK.DotNet.Core.Debug.LogLevel LogLevel 15 | { 16 | get => _logLevel; 17 | set => OneSignalNative.Debug.LogLevel = ToNativeConversion.ToLogLevel(value); 18 | } 19 | 20 | public OneSignalSDK.DotNet.Core.Debug.LogLevel AlertLevel 21 | { 22 | get => _alertLevel; 23 | set => OneSignalNative.Debug.AlertLevel = ToNativeConversion.ToLogLevel(value); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android/AndroidLiveActivitiesManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace OneSignalSDK.DotNet.Android; 3 | 4 | using System.Threading.Tasks; 5 | using OneSignalSDK.DotNet.Core; 6 | using OneSignalSDK.DotNet.Core.LiveActivities; 7 | 8 | public class AndroidLiveActivitiesManager: ILiveActivitiesManager 9 | { 10 | public Task Enter(string activityId, string token) 11 | { 12 | Console.WriteLine("OneSignal: EnterLiveActivity is available on iOS only"); 13 | return Task.FromResult(false); 14 | } 15 | 16 | public Task Exit(string activityId) 17 | { 18 | Console.WriteLine("OneSignal: ExitLiveActivity is available on iOS only"); 19 | return Task.FromResult(false); 20 | } 21 | 22 | public void RemovePushToStartToken(string activityType) 23 | { 24 | Console.WriteLine("OneSignal: RemovePushToStartToken is available on iOS only"); 25 | } 26 | 27 | public void SetPushToStartToken(string activityType, string token) 28 | { 29 | Console.WriteLine("OneSignal: SetPushToStartToken is available on iOS only"); 30 | } 31 | 32 | public void SetupDefault(LiveActivitySetupOptions options = null) 33 | { 34 | Console.WriteLine("OneSignal: SetupDefault is available on iOS only"); 35 | } 36 | 37 | public void StartDefault(string activityId, IDictionary attributes, IDictionary content) 38 | { 39 | Console.WriteLine("OneSignal: StartDefault is available on iOS only"); 40 | } 41 | } -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android/AndroidLocationManager.cs: -------------------------------------------------------------------------------- 1 | using OneSignalSDK.DotNet.Core; 2 | using OneSignalSDK.DotNet.Core.Location; 3 | 4 | using OneSignalNative = Com.OneSignal.Android.OneSignal; 5 | 6 | namespace OneSignalSDK.DotNet.Android; 7 | 8 | public class AndroidLocationManager : ILocationManager 9 | { 10 | public bool IsShared 11 | { 12 | get => OneSignalNative.Location.Shared; 13 | set => OneSignalNative.Location.Shared = value; 14 | } 15 | 16 | public void RequestPermission() 17 | { 18 | var consumer = new AndroidBoolConsumer(); 19 | OneSignalNative.Location.RequestPermission(Com.OneSignal.Android.Continue.With(consumer)); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Android/AndroidSessionManager.cs: -------------------------------------------------------------------------------- 1 | using OneSignalSDK.DotNet.Core; 2 | using OneSignalSDK.DotNet.Core.Session; 3 | 4 | using OneSignalNative = Com.OneSignal.Android.OneSignal; 5 | 6 | namespace OneSignalSDK.DotNet.Android; 7 | 8 | public class AndroidSessionManager : ISessionManager 9 | { 10 | public void AddOutcome(string name) => OneSignalNative.Session.AddOutcome(name); 11 | public void AddUniqueOutcome(string name) => OneSignalNative.Session.AddUniqueOutcome(name); 12 | public void AddOutcomeWithValue(string name, float value) => OneSignalNative.Session.AddOutcomeWithValue(name, value); 13 | } 14 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/Debug/IDebugManager.cs: -------------------------------------------------------------------------------- 1 | namespace OneSignalSDK.DotNet.Core.Debug 2 | { 3 | 4 | /// 5 | /// Access to debug the SDK in the event additional information is required to diagnose any 6 | /// SDK-related issues. 7 | /// 8 | public interface IDebugManager 9 | { 10 | /// 11 | /// The log level the OneSignal SDK should be writing to the Android log. Defaults to . 12 | /// 13 | LogLevel LogLevel { get; set; } 14 | 15 | /// 16 | /// The log level the OneSignal SDK should be showing as a modal. Defaults to 17 | /// 18 | LogLevel AlertLevel { get; set; } 19 | } 20 | } -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/Debug/LogLevel.cs: -------------------------------------------------------------------------------- 1 | namespace OneSignalSDK.DotNet.Core.Debug 2 | { 3 | public enum LogLevel { NONE, FATAL, ERROR, WARN, INFO, DEBUG, VERBOSE } 4 | } -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/InAppMessages/InAppMessage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OneSignalSDK.DotNet.Core.InAppMessages 4 | { 5 | public class InAppMessage 6 | { 7 | /// 8 | /// The unique identifier for this in-app message 9 | /// 10 | public string MessageId { get; } 11 | 12 | public InAppMessage(string messageId) 13 | { 14 | MessageId = messageId; 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/InAppMessages/InAppMessageClickedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OneSignalSDK.DotNet.Core.InAppMessages 4 | { 5 | /// 6 | /// The for the event. 7 | /// 8 | public sealed class InAppMessageClickedEventArgs : EventArgs 9 | { 10 | /// 11 | /// The message that has raised the lifecycle event. 12 | /// 13 | public InAppMessage Message { get; } 14 | 15 | /// 16 | /// The action that was taken due to the click. 17 | /// 18 | public InAppMessageClickResult Result { get; } 19 | 20 | public InAppMessageClickedEventArgs(InAppMessage message, InAppMessageClickResult result) 21 | { 22 | Message = message; 23 | Result = result; 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/Internal/Utilities/WrapperSDK.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.CompilerServices; 3 | using System.Threading.Tasks; 4 | 5 | namespace OneSignalSDK.DotNet.Core.Internal.Utilities 6 | { 7 | public static class WrapperSDK 8 | { 9 | 10 | public static string Type = "dotnet"; 11 | 12 | public static string Version 13 | { 14 | get 15 | { 16 | var version = typeof(WrapperSDK).Assembly.GetName().Version; 17 | if (version == null) 18 | return null; 19 | 20 | return $"{version.Major:D2}{version.Minor:D2}{version.Build:D2}"; 21 | } 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/Notifications/NotificationClickResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OneSignalSDK.DotNet.Core.Notifications 4 | { 5 | /// 6 | /// The result of a click a user has taken when opening a notification. 7 | /// 8 | public class NotificationClickResult 9 | { 10 | public string ActionId { get; } 11 | 12 | public string Url { get; } 13 | 14 | public NotificationClickResult(string actionId, string url) 15 | { 16 | ActionId = actionId; 17 | Url = url; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/Notifications/NotificationClickedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OneSignalSDK.DotNet.Core.Notifications 4 | { 5 | /// 6 | /// The for the event. 7 | /// 8 | public sealed class NotificationClickedEventArgs : EventArgs 9 | { 10 | /// 11 | /// The notification that was clicked on. 12 | /// 13 | public Notification Notification { get; } 14 | 15 | /// 16 | /// The action that was taken on the notification. 17 | /// 18 | public NotificationClickResult Result { get; } 19 | 20 | public NotificationClickedEventArgs(Notification notification, NotificationClickResult result) 21 | { 22 | Notification = notification; 23 | Result = result; 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/Notifications/NotificationPermission.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace OneSignalSDK.DotNet.Core.Notifications 3 | { 4 | public enum NotificationPermission 5 | { 6 | NotDetermined = 0, 7 | Denied, 8 | Authorized, 9 | Provisional, // only available in iOS 12 10 | Ephemeral // only available in iOS 14 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/Notifications/NotificationPermissionChangedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OneSignalSDK.DotNet.Core.Notifications 4 | { 5 | /// 6 | /// The for the event. 7 | /// 8 | public sealed class NotificationPermissionChangedEventArgs : EventArgs 9 | { 10 | /// 11 | /// The current permission state. 12 | /// 13 | public bool Permission { get; } 14 | 15 | public NotificationPermissionChangedEventArgs(bool permission) 16 | { 17 | Permission = permission; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/Notifications/NotificationWillDisplayEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using static System.Net.Mime.MediaTypeNames; 3 | 4 | namespace OneSignalSDK.DotNet.Core.Notifications 5 | { 6 | /// 7 | /// The for the event. 8 | /// 9 | public abstract class NotificationWillDisplayEventArgs : EventArgs 10 | { 11 | /// 12 | /// The notification received by the app. 13 | /// 14 | public DisplayableNotification Notification { get; } 15 | 16 | public NotificationWillDisplayEventArgs(DisplayableNotification notification) 17 | { 18 | Notification = notification; 19 | } 20 | 21 | public abstract void PreventDefault(); 22 | } 23 | } -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/User/IUserState.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OneSignalSDK.DotNet.Core.User 4 | { 5 | public interface IUserState { 6 | /// 7 | /// The unique identifier for your OneSignal account. This will be an empty string until the 8 | /// user has been successfully logged in on the backend and assigned an ID. 9 | /// Use [Changed] to be notified when the [OneSignalId] has been successfully assigned. 10 | /// 11 | string OneSignalId { get; } 12 | 13 | /// 14 | /// The external identifier that you use to identify users. Use [Changed] to be notified 15 | /// when the [ExternalId] has been successfully assigned. This will be an empty string if no 16 | /// external identifier has been assigned to the associated [OneSignalId]. 17 | /// 18 | string ExternalId { get; } 19 | } 20 | } -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/User/Subscriptions/IPushSubscriptionState.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OneSignalSDK.DotNet.Core.User.Subscriptions 4 | { 5 | /// 6 | /// A subscription. 7 | /// 8 | public interface IPushSubscriptionState 9 | { 10 | /// 11 | /// The unique identifier for this subscription. This will be an empty string 12 | /// until the subscription has been successfully created on the backend and 13 | /// assigned an ID. 14 | /// 15 | string Id { get; } 16 | 17 | /// 18 | /// The token which identifies the device/app that notifications are to be sent. May 19 | /// be an empty string, indicating the push token has not yet been retrieved. 20 | /// 21 | string Token { get; } 22 | 23 | /// 24 | /// Whether the user of this subscription is opted-in to received notifications. When true, 25 | /// the user is able to receive notifications through this subscription.Otherwise, the 26 | /// user will not receive notifications through this subscription (even when the user has 27 | /// granted app permission). 28 | /// 29 | bool OptedIn { get; } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/User/Subscriptions/PushSubscriptionChangedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OneSignalSDK.DotNet.Core.User.Subscriptions 4 | { 5 | /// 6 | /// The for the event. 7 | /// 8 | public sealed class PushSubscriptionChangedEventArgs : EventArgs 9 | { 10 | /// 11 | /// The subscription that has changed, in its new state. 12 | /// 13 | public PushSubscriptionChangedState State { get; } 14 | 15 | public PushSubscriptionChangedEventArgs(PushSubscriptionChangedState state) 16 | { 17 | State = state; 18 | } 19 | } 20 | 21 | public sealed class PushSubscriptionChangedState 22 | { 23 | /// 24 | /// The push subscription state prior to being changed. 25 | /// 26 | public IPushSubscriptionState Previous { get; } 27 | 28 | /// 29 | /// The push subscription state after being changed. 30 | /// 31 | public IPushSubscriptionState Current { get; } 32 | 33 | public PushSubscriptionChangedState(IPushSubscriptionState previous, IPushSubscriptionState current) 34 | { 35 | Previous = previous; 36 | Current = current; 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.Core/User/UserStateChangedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OneSignalSDK.DotNet.Core.User 4 | { 5 | /// 6 | /// Several states associated with the SDK can be changed in and outside of the application. 7 | /// 8 | public class UserStateChangedEventArgs : EventArgs 9 | { 10 | public UserChangedState State { get; } 11 | 12 | public UserStateChangedEventArgs(UserChangedState state) { 13 | State = state; 14 | } 15 | } 16 | 17 | public sealed class UserChangedState { 18 | public IUserState Current { get; } 19 | 20 | public UserChangedState(IUserState state) { 21 | Current = state; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Headers/OSBundleUtils.h: -------------------------------------------------------------------------------- 1 | /* 2 | Modified MIT License 3 | Copyright 2024 OneSignal 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 1. The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 2. All copies of substantial portions of the Software may only be used in connection 13 | with services provided by OneSignal. 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | */ 22 | 23 | @interface OSBundleUtils : NSObject 24 | + (BOOL)isAppUsingUIScene; 25 | @end 26 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Headers/OneSignalMobileProvision.h: -------------------------------------------------------------------------------- 1 | // 2 | // OneSignalMobileProvision.h 3 | // Renamed from UIApplication+BSMobileProvision.h to prevent conflicts 4 | // 5 | // Created by kaolin fire on 2013-06-24. 6 | // Copyright (c) 2013 The Blindsight Corporation. All rights reserved. 7 | // Released under the BSD 2-Clause License (see LICENSE) 8 | 9 | typedef NS_ENUM(NSInteger, OSUIApplicationReleaseMode) { 10 | UIApplicationReleaseUnknown, 11 | UIApplicationReleaseDev, 12 | UIApplicationReleaseAdHoc, 13 | UIApplicationReleaseWildcard, 14 | UIApplicationReleaseAppStore, 15 | UIApplicationReleaseSim, 16 | UIApplicationReleaseEnterprise 17 | }; 18 | 19 | @interface OneSignalMobileProvision : NSObject 20 | 21 | + (OSUIApplicationReleaseMode) releaseMode; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Headers/SwizzlingForwarder.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | /** 6 | Use this in your swizzled methods implementations to ensure your swizzling 7 | does not create side effects. 8 | This is done by checking if there was an existing implementations and also if 9 | the object has a forwardingTargetForSelector: setup. 10 | */ 11 | @interface SwizzlingForwarder : NSObject 12 | /** 13 | Constructor to setup this instance so you can call invokeWithArgs latter 14 | to forward the call onto the correct selector and object so you swizzling does 15 | create any cause side effects. 16 | @param object Your object, normally you should pass in self. 17 | @param yourSelector Your named selector. 18 | @param originalSelector The original selector, the one you would call if 19 | swizzling was out of the picture. 20 | @return Always returns an instance. 21 | */ 22 | -(instancetype)initWithTarget:(id)object 23 | withYourSelector:(SEL)yourSelector 24 | withOriginalSelector:(SEL)originalSelector; 25 | 26 | /** 27 | Optionally call before invokeWithArgs to know it will execute anything. 28 | */ 29 | -(BOOL)hasReceiver; 30 | 31 | /** 32 | Must call this to call in your swizzled method somewhere to ensure the 33 | original code is still run. 34 | */ 35 | -(void)invokeWithArgs:(NSArray*)args; 36 | @end 37 | 38 | NS_ASSUME_NONNULL_END 39 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalCore { 2 | umbrella header "OneSignalCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/OneSignalCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/OneSignalCore -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | NSPrivacyAccessedAPITypes 8 | 9 | 10 | NSPrivacyAccessedAPIType 11 | NSPrivacyAccessedAPICategoryUserDefaults 12 | NSPrivacyAccessedAPITypeReasons 13 | 14 | CA92.1 15 | 16 | 17 | 18 | NSPrivacyTracking 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/OneSignalCore: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalCore -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/Headers/OSBundleUtils.h: -------------------------------------------------------------------------------- 1 | /* 2 | Modified MIT License 3 | Copyright 2024 OneSignal 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 1. The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 2. All copies of substantial portions of the Software may only be used in connection 13 | with services provided by OneSignal. 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | */ 22 | 23 | @interface OSBundleUtils : NSObject 24 | + (BOOL)isAppUsingUIScene; 25 | @end 26 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/Headers/OneSignalMobileProvision.h: -------------------------------------------------------------------------------- 1 | // 2 | // OneSignalMobileProvision.h 3 | // Renamed from UIApplication+BSMobileProvision.h to prevent conflicts 4 | // 5 | // Created by kaolin fire on 2013-06-24. 6 | // Copyright (c) 2013 The Blindsight Corporation. All rights reserved. 7 | // Released under the BSD 2-Clause License (see LICENSE) 8 | 9 | typedef NS_ENUM(NSInteger, OSUIApplicationReleaseMode) { 10 | UIApplicationReleaseUnknown, 11 | UIApplicationReleaseDev, 12 | UIApplicationReleaseAdHoc, 13 | UIApplicationReleaseWildcard, 14 | UIApplicationReleaseAppStore, 15 | UIApplicationReleaseSim, 16 | UIApplicationReleaseEnterprise 17 | }; 18 | 19 | @interface OneSignalMobileProvision : NSObject 20 | 21 | + (OSUIApplicationReleaseMode) releaseMode; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/Headers/SwizzlingForwarder.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | /** 6 | Use this in your swizzled methods implementations to ensure your swizzling 7 | does not create side effects. 8 | This is done by checking if there was an existing implementations and also if 9 | the object has a forwardingTargetForSelector: setup. 10 | */ 11 | @interface SwizzlingForwarder : NSObject 12 | /** 13 | Constructor to setup this instance so you can call invokeWithArgs latter 14 | to forward the call onto the correct selector and object so you swizzling does 15 | create any cause side effects. 16 | @param object Your object, normally you should pass in self. 17 | @param yourSelector Your named selector. 18 | @param originalSelector The original selector, the one you would call if 19 | swizzling was out of the picture. 20 | @return Always returns an instance. 21 | */ 22 | -(instancetype)initWithTarget:(id)object 23 | withYourSelector:(SEL)yourSelector 24 | withOriginalSelector:(SEL)originalSelector; 25 | 26 | /** 27 | Optionally call before invokeWithArgs to know it will execute anything. 28 | */ 29 | -(BOOL)hasReceiver; 30 | 31 | /** 32 | Must call this to call in your swizzled method somewhere to ensure the 33 | original code is still run. 34 | */ 35 | -(void)invokeWithArgs:(NSArray*)args; 36 | @end 37 | 38 | NS_ASSUME_NONNULL_END 39 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalCore { 2 | umbrella header "OneSignalCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/OneSignalCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/OneSignalCore -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | NSPrivacyAccessedAPITypes 8 | 9 | 10 | NSPrivacyAccessedAPIType 11 | NSPrivacyAccessedAPICategoryUserDefaults 12 | NSPrivacyAccessedAPITypeReasons 13 | 14 | CA92.1 15 | 16 | 17 | 18 | NSPrivacyTracking 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/Headers/OSBundleUtils.h: -------------------------------------------------------------------------------- 1 | /* 2 | Modified MIT License 3 | Copyright 2024 OneSignal 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 1. The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 2. All copies of substantial portions of the Software may only be used in connection 13 | with services provided by OneSignal. 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | */ 22 | 23 | @interface OSBundleUtils : NSObject 24 | + (BOOL)isAppUsingUIScene; 25 | @end 26 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/Headers/OneSignalMobileProvision.h: -------------------------------------------------------------------------------- 1 | // 2 | // OneSignalMobileProvision.h 3 | // Renamed from UIApplication+BSMobileProvision.h to prevent conflicts 4 | // 5 | // Created by kaolin fire on 2013-06-24. 6 | // Copyright (c) 2013 The Blindsight Corporation. All rights reserved. 7 | // Released under the BSD 2-Clause License (see LICENSE) 8 | 9 | typedef NS_ENUM(NSInteger, OSUIApplicationReleaseMode) { 10 | UIApplicationReleaseUnknown, 11 | UIApplicationReleaseDev, 12 | UIApplicationReleaseAdHoc, 13 | UIApplicationReleaseWildcard, 14 | UIApplicationReleaseAppStore, 15 | UIApplicationReleaseSim, 16 | UIApplicationReleaseEnterprise 17 | }; 18 | 19 | @interface OneSignalMobileProvision : NSObject 20 | 21 | + (OSUIApplicationReleaseMode) releaseMode; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/Headers/SwizzlingForwarder.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | NS_ASSUME_NONNULL_BEGIN 4 | 5 | /** 6 | Use this in your swizzled methods implementations to ensure your swizzling 7 | does not create side effects. 8 | This is done by checking if there was an existing implementations and also if 9 | the object has a forwardingTargetForSelector: setup. 10 | */ 11 | @interface SwizzlingForwarder : NSObject 12 | /** 13 | Constructor to setup this instance so you can call invokeWithArgs latter 14 | to forward the call onto the correct selector and object so you swizzling does 15 | create any cause side effects. 16 | @param object Your object, normally you should pass in self. 17 | @param yourSelector Your named selector. 18 | @param originalSelector The original selector, the one you would call if 19 | swizzling was out of the picture. 20 | @return Always returns an instance. 21 | */ 22 | -(instancetype)initWithTarget:(id)object 23 | withYourSelector:(SEL)yourSelector 24 | withOriginalSelector:(SEL)originalSelector; 25 | 26 | /** 27 | Optionally call before invokeWithArgs to know it will execute anything. 28 | */ 29 | -(BOOL)hasReceiver; 30 | 31 | /** 32 | Must call this to call in your swizzled method somewhere to ensure the 33 | original code is still run. 34 | */ 35 | -(void)invokeWithArgs:(NSArray*)args; 36 | @end 37 | 38 | NS_ASSUME_NONNULL_END 39 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalCore { 2 | umbrella header "OneSignalCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/OneSignalCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/OneSignalCore -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | NSPrivacyAccessedAPITypes 8 | 9 | 10 | NSPrivacyAccessedAPIType 11 | NSPrivacyAccessedAPICategoryUserDefaults 12 | NSPrivacyAccessedAPITypeReasons 13 | 14 | CA92.1 15 | 16 | 17 | 18 | NSPrivacyTracking 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64/OneSignalExtension.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64/OneSignalExtension.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64/OneSignalExtension.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalExtension { 2 | umbrella header "OneSignalExtension.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64/OneSignalExtension.framework/OneSignalExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64/OneSignalExtension.framework/OneSignalExtension -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/OneSignalExtension: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalExtension -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalExtension { 2 | umbrella header "OneSignalExtension.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Versions/A/OneSignalExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Versions/A/OneSignalExtension -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-simulator/OneSignalExtension.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-simulator/OneSignalExtension.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-simulator/OneSignalExtension.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalExtension { 2 | umbrella header "OneSignalExtension.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-simulator/OneSignalExtension.framework/OneSignalExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalExtension.xcframework/ios-arm64_x86_64-simulator/OneSignalExtension.framework/OneSignalExtension -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/Modules/OneSignalFramework.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/Modules/OneSignalFramework.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalFramework { 2 | umbrella header "OneSignalFramework.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalFramework.Swift { 9 | header "OneSignalFramework-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/OneSignalFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/OneSignalFramework -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/OneSignalFramework: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalFramework -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/A/Modules/OneSignalFramework.swiftmodule/arm64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/A/Modules/OneSignalFramework.swiftmodule/arm64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/A/Modules/OneSignalFramework.swiftmodule/x86_64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/A/Modules/OneSignalFramework.swiftmodule/x86_64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalFramework { 2 | umbrella header "OneSignalFramework.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalFramework.Swift { 9 | header "OneSignalFramework-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/A/OneSignalFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/A/OneSignalFramework -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/Modules/OneSignalFramework.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/Modules/OneSignalFramework.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/Modules/OneSignalFramework.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/Modules/OneSignalFramework.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalFramework { 2 | umbrella header "OneSignalFramework.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalFramework.Swift { 9 | header "OneSignalFramework-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/OneSignalFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/OneSignalFramework -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalInAppMessages { 2 | umbrella header "OneSignalInAppMessages.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/OneSignalInAppMessages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/OneSignalInAppMessages -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | CA92.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/OneSignalInAppMessages: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalInAppMessages -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalInAppMessages { 2 | umbrella header "OneSignalInAppMessages.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Versions/A/OneSignalInAppMessages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Versions/A/OneSignalInAppMessages -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Versions/A/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | CA92.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalInAppMessages { 2 | umbrella header "OneSignalInAppMessages.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/OneSignalInAppMessages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/OneSignalInAppMessages -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | CA92.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/Modules/OneSignalLiveActivities.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/Modules/OneSignalLiveActivities.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalLiveActivities { 2 | umbrella header "OneSignalLiveActivities.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalLiveActivities.Swift { 9 | header "OneSignalLiveActivities-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/OneSignalLiveActivities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/OneSignalLiveActivities -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | CA92.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/OneSignalLiveActivities: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalLiveActivities -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/Modules/OneSignalLiveActivities.swiftmodule/arm64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/Modules/OneSignalLiveActivities.swiftmodule/arm64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/Modules/OneSignalLiveActivities.swiftmodule/x86_64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/Modules/OneSignalLiveActivities.swiftmodule/x86_64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalLiveActivities { 2 | umbrella header "OneSignalLiveActivities.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalLiveActivities.Swift { 9 | header "OneSignalLiveActivities-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/OneSignalLiveActivities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/OneSignalLiveActivities -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | CA92.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/Modules/OneSignalLiveActivities.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/Modules/OneSignalLiveActivities.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/Modules/OneSignalLiveActivities.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/Modules/OneSignalLiveActivities.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalLiveActivities { 2 | umbrella header "OneSignalLiveActivities.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalLiveActivities.Swift { 9 | header "OneSignalLiveActivities-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/OneSignalLiveActivities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/OneSignalLiveActivities -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | CA92.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64/OneSignalLocation.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64/OneSignalLocation.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64/OneSignalLocation.framework/OneSignalLocation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64/OneSignalLocation.framework/OneSignalLocation -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/OneSignalLocation: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalLocation -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/Versions/A/OneSignalLocation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/Versions/A/OneSignalLocation -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64_x86_64-simulator/OneSignalLocation.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64_x86_64-simulator/OneSignalLocation.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64_x86_64-simulator/OneSignalLocation.framework/OneSignalLocation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalLocation.xcframework/ios-arm64_x86_64-simulator/OneSignalLocation.framework/OneSignalLocation -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalNotifications { 2 | umbrella header "OneSignalNotifications.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/OneSignalNotifications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/OneSignalNotifications -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | 1C8F.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/OneSignalNotifications: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalNotifications -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalNotifications { 2 | umbrella header "OneSignalNotifications.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Versions/A/OneSignalNotifications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Versions/A/OneSignalNotifications -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Versions/A/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | 1C8F.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalNotifications { 2 | umbrella header "OneSignalNotifications.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/OneSignalNotifications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/OneSignalNotifications -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | 1C8F.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOSCore { 2 | umbrella header "OneSignalOSCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalOSCore.Swift { 9 | header "OneSignalOSCore-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/OneSignalOSCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/OneSignalOSCore -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | NSPrivacyAccessedAPITypes 8 | 9 | 10 | NSPrivacyAccessedAPIType 11 | NSPrivacyAccessedAPICategoryUserDefaults 12 | NSPrivacyAccessedAPITypeReasons 13 | 14 | CA92.1 15 | 16 | 17 | 18 | NSPrivacyTracking 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/OneSignalOSCore: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalOSCore -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/Modules/OneSignalOSCore.swiftmodule/arm64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/Modules/OneSignalOSCore.swiftmodule/arm64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/Modules/OneSignalOSCore.swiftmodule/x86_64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/Modules/OneSignalOSCore.swiftmodule/x86_64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOSCore { 2 | umbrella header "OneSignalOSCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalOSCore.Swift { 9 | header "OneSignalOSCore-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/OneSignalOSCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/OneSignalOSCore -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | NSPrivacyAccessedAPITypes 8 | 9 | 10 | NSPrivacyAccessedAPIType 11 | NSPrivacyAccessedAPICategoryUserDefaults 12 | NSPrivacyAccessedAPITypeReasons 13 | 14 | CA92.1 15 | 16 | 17 | 18 | NSPrivacyTracking 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOSCore { 2 | umbrella header "OneSignalOSCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalOSCore.Swift { 9 | header "OneSignalOSCore-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/OneSignalOSCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/OneSignalOSCore -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | NSPrivacyAccessedAPITypes 8 | 9 | 10 | NSPrivacyAccessedAPIType 11 | NSPrivacyAccessedAPICategoryUserDefaults 12 | NSPrivacyAccessedAPITypeReasons 13 | 14 | CA92.1 15 | 16 | 17 | 18 | NSPrivacyTracking 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOutcomes { 2 | umbrella header "OneSignalOutcomes.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/OneSignalOutcomes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/OneSignalOutcomes -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | CA92.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/OneSignalOutcomes: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalOutcomes -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOutcomes { 2 | umbrella header "OneSignalOutcomes.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Versions/A/OneSignalOutcomes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Versions/A/OneSignalOutcomes -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Versions/A/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | CA92.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOutcomes { 2 | umbrella header "OneSignalOutcomes.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/OneSignalOutcomes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/OneSignalOutcomes -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyCollectedDataTypes 6 | 7 | 8 | NSPrivacyCollectedDataType 9 | NSPrivacyCollectedDataTypeProductInteraction 10 | NSPrivacyCollectedDataTypeLinked 11 | 12 | NSPrivacyCollectedDataTypeTracking 13 | 14 | NSPrivacyCollectedDataTypePurposes 15 | 16 | NSPrivacyCollectedDataTypePurposeAnalytics 17 | 18 | 19 | 20 | NSPrivacyAccessedAPITypes 21 | 22 | 23 | NSPrivacyAccessedAPIType 24 | NSPrivacyAccessedAPICategoryUserDefaults 25 | NSPrivacyAccessedAPITypeReasons 26 | 27 | CA92.1 28 | 29 | 30 | 31 | NSPrivacyTracking 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalSDK.DotNet.iOS.Binding.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 25.0.1705.4 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OneSignalSDK.DotNet.iOS.Binding", "OneSignalSDK.DotNet.iOS.Binding.csproj", "{B229EA34-246D-485F-8DE1-8B245D0D06EC}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B229EA34-246D-485F-8DE1-8B245D0D06EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B229EA34-246D-485F-8DE1-8B245D0D06EC}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B229EA34-246D-485F-8DE1-8B245D0D06EC}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B229EA34-246D-485F-8DE1-8B245D0D06EC}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {CAAA2496-A906-457A-927A-54FBF58DDE10} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalUser { 2 | umbrella header "OneSignalUser.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalUser.Swift { 9 | header "OneSignalUser-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/OneSignalUser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/OneSignalUser -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/OneSignalUser: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalUser -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/Modules/OneSignalUser.swiftmodule/arm64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/Modules/OneSignalUser.swiftmodule/arm64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/Modules/OneSignalUser.swiftmodule/x86_64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/Modules/OneSignalUser.swiftmodule/x86_64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalUser { 2 | umbrella header "OneSignalUser.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalUser.Swift { 9 | header "OneSignalUser-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/OneSignalUser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/OneSignalUser -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Info.plist -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalUser { 2 | umbrella header "OneSignalUser.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalUser.Swift { 9 | header "OneSignalUser-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/OneSignalUser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneSignal/OneSignal-DotNet-SDK/d3d07d4093597d68a32af42a0af5c2102191dae5/OneSignalSDK.DotNet.iOS.Binding/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/OneSignalUser -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS.Binding/StructsAndEnums.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | using ObjCRuntime; 3 | namespace Com.OneSignal.iOS { 4 | [Native] 5 | public enum OSNotificationActionType : ulong 6 | { 7 | Opened, 8 | ActionTaken 9 | } 10 | 11 | [Native] 12 | public enum OneSLogLevel : ulong 13 | { 14 | None, 15 | Fatal, 16 | Error, 17 | Warn, 18 | Info, 19 | Debug, 20 | Verbose 21 | } 22 | 23 | [Native] 24 | public enum OSNotificationPermission : long 25 | { 26 | NotDetermined = 0, 27 | Denied, 28 | Authorized, 29 | Provisional, 30 | Ephemeral 31 | } 32 | 33 | [Native] 34 | public enum OSInAppMessageActionUrlType : ulong 35 | { 36 | Safari, 37 | Webview, 38 | ReplaceContent 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS/Utilities/CallbackProxy.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.CompilerServices; 3 | using OneSignalSDK.DotNet.Core.Internal.Utilities; 4 | 5 | namespace OneSignalSDK.DotNet.iOS.Utilities; 6 | 7 | /// 8 | /// The abstract class that is to be used to bridge objective-c / swift callbacks 9 | /// to .NET's async pattern. The appropriate implementing class should be used, 10 | /// depending on what the objective-c / swift function calls back with. 11 | /// 12 | /// The expected .NET return type of the method being called. 13 | public abstract class CallbackProxy 14 | { 15 | protected TaskCompletionSource _completionSource = new TaskCompletionSource(); 16 | 17 | public TaskAwaiter GetAwaiter() 18 | { 19 | return _completionSource.Task.GetAwaiter(); 20 | } 21 | 22 | public void OnResponse(TReturn response) 23 | { 24 | _completionSource.TrySetResult(response); 25 | } 26 | } 27 | 28 | /// 29 | /// A boolean callback proxy. 30 | /// 31 | public sealed class BooleanCallbackProxy : CallbackProxy 32 | { 33 | } 34 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS/iOSDebugManager.cs: -------------------------------------------------------------------------------- 1 | using CoreFoundation; 2 | using OneSignalSDK.DotNet.Core; 3 | using OneSignalSDK.DotNet.Core.Debug; 4 | 5 | using Com.OneSignal.iOS; 6 | using OneSignalNative = Com.OneSignal.iOS.OneSignal; 7 | 8 | namespace OneSignalSDK.DotNet.iOS; 9 | 10 | public class iOSDebugManager : IDebugManager 11 | { 12 | private Core.Debug.LogLevel _logLevel = Core.Debug.LogLevel.WARN; 13 | private Core.Debug.LogLevel _alertLevel = Core.Debug.LogLevel.NONE; 14 | 15 | public Core.Debug.LogLevel LogLevel 16 | { 17 | get => _logLevel; 18 | set { 19 | _logLevel = value; 20 | OneSignalNative.Debug.SetLogLevel((OneSLogLevel)_logLevel); 21 | } 22 | } 23 | 24 | public Core.Debug.LogLevel AlertLevel 25 | { 26 | get => _alertLevel; 27 | set 28 | { 29 | _alertLevel = value; 30 | OneSignalNative.Debug.SetAlertLevel((OneSLogLevel)_alertLevel); 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS/iOSLocationManager.cs: -------------------------------------------------------------------------------- 1 | using OneSignalSDK.DotNet.Core; 2 | using OneSignalSDK.DotNet.Core.Location; 3 | 4 | using OneSignalNative = Com.OneSignal.iOS.OneSignal; 5 | 6 | namespace OneSignalSDK.DotNet.iOS; 7 | 8 | public class iOSLocationManager : ILocationManager 9 | { 10 | public bool IsShared 11 | { 12 | get => OneSignalNative.Location.IsShared; 13 | set => OneSignalNative.Location.SetShared(value); 14 | } 15 | 16 | public void RequestPermission() 17 | { 18 | OneSignalNative.Location.RequestPermission(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet.iOS/iOSSessionManager.cs: -------------------------------------------------------------------------------- 1 | using OneSignalSDK.DotNet.Core; 2 | using OneSignalSDK.DotNet.Core.Session; 3 | 4 | using OneSignalNative = Com.OneSignal.iOS.OneSignal; 5 | 6 | namespace OneSignalSDK.DotNet.iOS; 7 | 8 | public class iOSSessionManager : ISessionManager 9 | { 10 | public void AddOutcome(string name) => OneSignalNative.Session.AddOutcome(name); 11 | public void AddUniqueOutcome(string name) => OneSignalNative.Session.AddUniqueOutcome(name); 12 | public void AddOutcomeWithValue(string name, float value) => OneSignalNative.Session.AddOutcomeWithValue(name, value); 13 | } 14 | -------------------------------------------------------------------------------- /OneSignalSDK.DotNet/OneSignalSDK.DotNet.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0;net7.0-android;net7.0-ios;netstandard2.0 5 | enable 6 | enable 7 | 10.0 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Samples/LIVE_ACTIVITIES.md: -------------------------------------------------------------------------------- 1 | The Live Activities functionality is disabled by default as it requires manual work for the solution to successfull build. 2 | This example is based off the work of https://github.com/chamons/xamarin-ios-swift-extension, which is an example of how to add a native Widget to a Xamarin application. 3 | 4 | To establish a Live Activity from a Xamarin application you must create a native LiveActivity Widget, build it natively, then import it into the Xamarin project via the `AdditionalAppExtensions` csproj target. 5 | 6 | To enable this functionality in the sample app, you must do the following on a mac: 7 | 8 | 1. Run `pod install` within `Samples/native/example`. 9 | 2. Using Xcode, open `Samples/native/example/example.xcworkspace`. 10 | 3. Go to menu File -> Workspace Settings and change `Derived Data` to `Project-relative Location` with path `DerivedData`. 11 | 4. Build the product for iPhone and/or the iPhoneSimulator, which will populate the `Derived Data` directory with the build output. 12 | 5. Using Visual Studio, open `OneSignal.sln`. 13 | 6. Within `Samples/OneSignalApp/OneSignalApp.csproj`, uncomment the block below `LIVE ACTIVITES: UNCOMMENT BELOW OUT FOR LIVE ACTIVITIES WIDGET`. 14 | 7. Change the platform to either `iPhone` or `iPhoneSimulator`, then build/run as the startup project `OneSignalApp`! -------------------------------------------------------------------------------- /Samples/OneSignalApp/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": ".NET MAUI", 9 | "type": "maui", 10 | "request": "launch", 11 | "preLaunchTask": "maui: Build" 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /Samples/OneSignalApp/AddOutcomePage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 |