├── .codeclimate.yml ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── config.yml ├── pull_request_template.md └── workflows │ ├── bcit-integration-test-embedded-messages.yml │ ├── bcit-integration-test-in-app.yml │ ├── bcit-integration-test-push-notification.yml │ ├── build-and-test.yml │ ├── codeql.yml │ ├── e2e.yml │ ├── ios-sdk-release.yml │ └── prepare-for-release.yml ├── .gitignore ├── .swiftformat ├── AGENT_README.md ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── Iterable-iOS-AppExtensions.podspec ├── Iterable-iOS-SDK.podspec ├── LICENSE.md ├── Package.swift ├── README.md ├── agent_build.sh ├── agent_test.sh ├── codecov.yml ├── fastlane ├── Fastfile └── Pluginfile ├── images └── Iterable-Logo.png ├── notification-extension ├── ITBNotificationServiceExtension.swift ├── Info.plist ├── IterableAppExtensions.h ├── NotificationContentParser.swift ├── NotificationExtensionConstants.swift └── TestFile.swift ├── sample-apps ├── inbox-customization │ ├── inbox-customization.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── inbox-customization │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x-1.png │ │ │ ├── Icon-App20x20.png │ │ │ ├── Icon-App20x20@2x.png │ │ │ ├── Icon-App29x29.png │ │ │ ├── Icon-App29x29@2x.png │ │ │ ├── Icon-App40x40.png │ │ │ ├── Icon-App40x40@2x.png │ │ │ ├── Icon-App76x76.png │ │ │ ├── Icon-App76x76@2x.png │ │ │ ├── Icon-App83.5@2x.png │ │ │ └── iTunesArtwork@2x.png │ │ ├── Contents.json │ │ ├── Home.imageset │ │ │ ├── 01.Home-128 copy 2.png │ │ │ ├── 01.Home-128 copy.png │ │ │ ├── 01.Home-128.png │ │ │ └── Contents.json │ │ └── Mail.imageset │ │ │ ├── Contents.json │ │ │ ├── mail-1x.png │ │ │ ├── mail-2x.png │ │ │ └── mail-3x.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Change Date Format │ │ ├── Change Date Format.swift │ │ └── change-date-format-messages.json │ │ ├── Custom Inbox Tabs │ │ ├── Advanced Inbox Tab │ │ │ ├── AdvancedInbox.storyboard │ │ │ ├── AdvancedInboxCell.swift │ │ │ ├── AdvancedInboxCell.xib │ │ │ ├── AdvancedInboxViewDelegate.swift │ │ │ ├── README.md │ │ │ └── advanced-inbox-tab-messages.json │ │ ├── Custom Inbox Tab │ │ │ ├── CustomInbox.storyboard │ │ │ ├── CustomInboxCell.xib │ │ │ ├── README.md │ │ │ └── custom-inbox-tab-messages.json │ │ └── Simple Inbox Tab │ │ │ ├── README.md │ │ │ ├── SimpleInbox.storyboard │ │ │ └── simple-inbox-tab-messages.json │ │ ├── Filter By Message Title │ │ ├── Filter By Message Title.swift │ │ └── filter-by-message-title-messages.json │ │ ├── Filter By Message Type │ │ ├── FilterByMessageType.swift │ │ └── filter-by-message-type-messages.json │ │ ├── Inbox With Additional Fields │ │ ├── AdditionalFieldsInboxCell.swift │ │ ├── AdditionalFieldsInboxCell.xib │ │ ├── Inbox With Additional Fields.swift │ │ └── inbox-with-additional-fields-messages.json │ │ ├── Inbox With Custom Cell │ │ ├── DarkInboxCell.xib │ │ ├── Inbox With Custom Cell.swift │ │ └── inbox-with-custom-cell-messages.json │ │ ├── Inbox With Multiple Cell Types │ │ ├── CustomInboxCell1.xib │ │ ├── CustomInboxCell2.xib │ │ ├── Inbox With Multiple Cell Types.swift │ │ └── inbox-with-multiple-cell-types-messages.json │ │ ├── Info.plist │ │ ├── MainViewController.swift │ │ ├── Mock Data │ │ ├── DataManager.swift │ │ ├── MainTabBarController.swift │ │ ├── MockInAppFetcher.swift │ │ ├── MockNetworkSession.swift │ │ ├── black-coffee.png │ │ ├── cappuccino.png │ │ ├── inbox-messages.json │ │ ├── latte.png │ │ └── mocha.png │ │ ├── Multiple Sections │ │ ├── Multiple Sections.swift │ │ └── multiple-sections-messages.json │ │ ├── Simple Inbox Without Nav │ │ ├── Simple Inbox Without Nav.swift │ │ └── simple-inbox-without-nav-messages.json │ │ ├── Simple Inbox │ │ ├── Simple Inbox.swift │ │ └── simple-inbox-messages.json │ │ ├── Sort By Date Ascending │ │ ├── Sort By Date Ascending.swift │ │ └── sort-by-date-ascending-messages.json │ │ ├── Sort By Title Ascending │ │ ├── Sort By Title Ascending.swift │ │ └── sort-by-title-ascending-messages.json │ │ └── inbox-customization.entitlements ├── objc-sample-app │ ├── objc-sample-app-notification-extension │ │ ├── Info.plist │ │ ├── NotificationService.h │ │ └── NotificationService.m │ ├── objc-sample-app.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── objc-sample-app │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x-1.png │ │ │ ├── Icon-App20x20.png │ │ │ ├── Icon-App20x20@2x.png │ │ │ ├── Icon-App29x29.png │ │ │ ├── Icon-App29x29@2x.png │ │ │ ├── Icon-App40x40.png │ │ │ ├── Icon-App40x40@2x.png │ │ │ ├── Icon-App76x76.png │ │ │ ├── Icon-App76x76@2x.png │ │ │ ├── Icon-App83.5@2x.png │ │ │ └── iTunesArtwork@2x.png │ │ ├── Black.imageset │ │ │ ├── Contents.json │ │ │ └── th.jpeg │ │ ├── Cappuccino.imageset │ │ │ ├── Contents.json │ │ │ └── th-1.jpeg │ │ ├── Contents.json │ │ ├── Latte.imageset │ │ │ ├── Contents.json │ │ │ └── Unknown-1.jpeg │ │ ├── Mocha.imageset │ │ │ ├── Contents.json │ │ │ └── Unknown.jpeg │ │ └── iterableLogo.imageset │ │ │ ├── Contents.json │ │ │ └── iterableLogo.pdf │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── CoffeeListTableViewController.h │ │ ├── CoffeeListTableViewController.m │ │ ├── CoffeeType.h │ │ ├── CoffeeType.m │ │ ├── CoffeeViewController.h │ │ ├── CoffeeViewController.m │ │ ├── DeepLinkHandler.h │ │ ├── DeepLinkHandler.m │ │ ├── Info.plist │ │ ├── LoginViewController.h │ │ ├── LoginViewController.m │ │ ├── main.m │ │ └── objc-sample-app.entitlements ├── swift-sample-app │ ├── swift-sample-app-notification-extension │ │ ├── Info.plist │ │ └── NotificationService.swift │ ├── swift-sample-app.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── internal-swift-sample-app.xcscheme │ │ │ ├── swift-sample-app-notification-extension.xcscheme │ │ │ └── swift-sample-app.xcscheme │ └── swift-sample-app │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x-1.png │ │ │ ├── Icon-App20x20.png │ │ │ ├── Icon-App20x20@2x.png │ │ │ ├── Icon-App29x29.png │ │ │ ├── Icon-App29x29@2x.png │ │ │ ├── Icon-App40x40.png │ │ │ ├── Icon-App40x40@2x.png │ │ │ ├── Icon-App76x76.png │ │ │ ├── Icon-App76x76@2x.png │ │ │ ├── Icon-App83.5@2x.png │ │ │ └── iTunesArtwork@2x.png │ │ ├── Black.imageset │ │ │ ├── Contents.json │ │ │ └── th.jpeg │ │ ├── Cappuccino.imageset │ │ │ ├── Contents.json │ │ │ └── th-1.jpeg │ │ ├── Contents.json │ │ ├── Latte.imageset │ │ │ ├── Contents.json │ │ │ └── Unknown-1.jpeg │ │ ├── Mocha.imageset │ │ │ ├── Contents.json │ │ │ └── Unknown.jpeg │ │ └── iterableLogo.imageset │ │ │ ├── Contents.json │ │ │ └── iterableLogo.pdf │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── CoffeeListTableViewController.swift │ │ ├── CoffeeType.swift │ │ ├── CoffeeViewController.swift │ │ ├── DeepLinkHandler.swift │ │ ├── EmbeddedMessages │ │ ├── EmbeddedMessagesViewController.swift │ │ ├── IterableCardViewCell.swift │ │ └── embeddedmessages.json │ │ ├── Info.plist │ │ ├── LoginViewController.swift │ │ ├── UIViewController+Extension.swift │ │ └── swift-sample-app.entitlements └── swiftui-sample-app │ ├── README.md │ ├── notification-extension │ ├── Info.plist │ └── NotificationService.swift │ ├── swiftui-sample-app.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── swiftui-sample-app │ ├── AppModel.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x-1.png │ │ ├── Icon-App20x20.png │ │ ├── Icon-App20x20@2x.png │ │ ├── Icon-App29x29.png │ │ ├── Icon-App29x29@2x.png │ │ ├── Icon-App40x40.png │ │ ├── Icon-App40x40@2x.png │ │ ├── Icon-App76x76.png │ │ ├── Icon-App76x76@2x.png │ │ ├── Icon-App83.5@2x.png │ │ └── iTunesArtwork@2x.png │ ├── Black.imageset │ │ ├── Contents.json │ │ └── th.jpeg │ ├── Cappuccino.imageset │ │ ├── Contents.json │ │ └── th-1.jpeg │ ├── Contents.json │ ├── Latte.imageset │ │ ├── Contents.json │ │ └── Unknown-1.jpeg │ ├── Mocha.imageset │ │ ├── Contents.json │ │ └── Unknown.jpeg │ └── iterableLogo.imageset │ │ ├── Contents.json │ │ └── iterableLogo.pdf │ ├── Coffee.swift │ ├── DeeplinkHandler.swift │ ├── Info.plist │ ├── IterableHelper.swift │ ├── MainApp.swift │ ├── Notifications.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── Views │ ├── CoffeeListView.swift │ ├── CoffeeRow.swift │ ├── CoffeeView.swift │ ├── ContentView.swift │ └── LoginView.swift │ └── swiftui-sample-app.entitlements ├── script.sh ├── scripts ├── build-target-module-framework.sh ├── create-xcframework-zips.sh ├── generate-zips.sh └── process_xcresult.py ├── swift-sdk.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── endpoint-tests.xcscheme │ ├── inbox-ui-tests-app.xcscheme │ ├── swift-sdk-parallel.xcscheme │ ├── swift-sdk.xcscheme │ └── ui-tests-app.xcscheme ├── swift-sdk ├── Core │ ├── Constants.swift │ ├── Models │ │ ├── CommerceItem.swift │ │ ├── IterableAction.swift │ │ ├── IterableActionContext.swift │ │ ├── IterableAttributionInfo.swift │ │ ├── IterableEmbeddedMessage.swift │ │ ├── IterableInAppMessage.swift │ │ ├── IterablePushNotificationMetadata.swift │ │ └── RetryPolicy.swift │ ├── Protocols │ │ ├── IterableAuthManagerProtocol.swift │ │ ├── IterableEmbeddedManagerProtocol.swift │ │ ├── IterableEmbeddedUpdateDelegate.swift │ │ ├── IterableInAppManagerProtocol.swift │ │ └── IterableInboxViewControllerViewDelegate.swift │ └── Utilities │ │ ├── AuthFailure.swift │ │ └── AuthFailureReason.swift ├── Info.plist ├── Internal │ ├── APNSTypeChecker.swift │ ├── ActionRunner.swift │ ├── AppExtensionHelper.swift │ ├── Auth.swift │ ├── AuthManager.swift │ ├── ClassExtensions.swift │ ├── CoreDataUtil.swift │ ├── DataFieldsHelper.swift │ ├── DateProvider.swift │ ├── DeepLinkManager.swift │ ├── Dwifft │ │ ├── AbstractDiffCalculator.swift │ │ ├── Dwifft+UIKit.swift │ │ ├── Dwifft.swift │ │ └── SectionedValues.swift │ ├── EmbeddedHelper.swift │ ├── EmbeddedMessagingProcessor.swift │ ├── EmbeddedMessagingSerialization.swift │ ├── EmbeddedSessionManager.swift │ ├── EmptyEmbeddedManager.swift │ ├── EmptyInAppManager.swift │ ├── HealthMonitor.swift │ ├── InboxImpressionTracker.swift │ ├── InboxMessageViewModel.swift │ ├── InboxSessionManager.swift │ ├── InboxState.swift │ ├── InboxViewControllerViewModel.swift │ ├── InboxViewControllerViewModelProtocol.swift │ ├── InboxViewControllerViewModelView.swift │ ├── InternalIterableAPI.swift │ ├── InternalIterableAppIntegration.swift │ ├── IterableAPICallRequest.swift │ ├── IterableAPICallTaskProcessor.swift │ ├── IterableAPIMobileFrameworkDetector.swift │ ├── IterableCoreDataPersistence.swift │ ├── IterableEmbeddedManager.swift │ ├── IterableHtmlMessageViewController.swift │ ├── IterableIdentityResolution.swift │ ├── IterableInboxCell+Layout.swift │ ├── IterableNotifications.swift │ ├── IterablePersistence.swift │ ├── IterableRequest.swift │ ├── IterableRequestUtil.swift │ ├── IterableTask.swift │ ├── IterableTaskError.swift │ ├── IterableTaskManagedObject.swift │ ├── IterableTaskProcessor.swift │ ├── IterableTaskResult.swift │ ├── IterableTaskRunner.swift │ ├── IterableTaskScheduler.swift │ ├── IterableUserDefaults.swift │ ├── MiscEmbeddedClasses.swift │ ├── MiscInboxClasses.swift │ ├── Models.swift │ ├── Network │ │ ├── NetworkConnectivityChecker.swift │ │ ├── NetworkConnectivityManager.swift │ │ ├── NetworkHelper.swift │ │ ├── NetworkMonitor.swift │ │ └── NetworkSession.swift │ ├── Pending.swift │ ├── RequestHandlerProtocol.swift │ ├── RequestProcessorUtil.swift │ ├── RequestSender.swift │ ├── UnknownUserManager+Functions.swift │ ├── UnknownUserManager.swift │ ├── UnknownUserManagerProtocol.swift │ ├── UnknownUserMerge.swift │ ├── Utilities │ │ ├── DependencyContainer.swift │ │ ├── DependencyContainerProtocol.swift │ │ ├── IterableLogUtil.swift │ │ ├── IterableUtil.swift │ │ ├── Keychain │ │ │ ├── IterableKeychain.swift │ │ │ └── KeychainWrapper.swift │ │ ├── LocalStorage.swift │ │ ├── LocalStorageProtocol.swift │ │ ├── NotificationHelper.swift │ │ ├── OrderedDictionary.swift │ │ ├── PersistenceHelper.swift │ │ ├── ResourceHelper.swift │ │ ├── UIColor+Extension.swift │ │ └── WebViewProtocol.swift │ ├── api-client │ │ ├── ApiClient.swift │ │ ├── ApiClientProtocol.swift │ │ └── Request │ │ │ ├── OfflineRequestProcessor.swift │ │ │ ├── OnlineRequestProcessor.swift │ │ │ ├── RequestCreator.swift │ │ │ ├── RequestHandler.swift │ │ │ └── RequestProcessorProtocol.swift │ └── in-app │ │ ├── InAppCalculations.swift │ │ ├── InAppContentParser.swift │ │ ├── InAppDisplayer.swift │ │ ├── InAppHelper.swift │ │ ├── InAppInternal.swift │ │ ├── InAppManager+Functions.swift │ │ ├── InAppManager.swift │ │ ├── InAppMessageParser.swift │ │ ├── InAppPersistence.swift │ │ └── InAppPresenter.swift ├── IterableSDK.h ├── IterableTokenGenerator.swift ├── Resources │ ├── Assets.xcassets │ │ ├── Contents.json │ │ └── Loading.imageset │ │ │ ├── Contents.json │ │ │ └── circle-of-dots-png.png │ ├── IterableDataModel.xcdatamodeld │ │ └── IterableDataModel.xcdatamodel │ │ │ └── contents │ ├── PrivacyInfo.xcprivacy │ └── anoncriteria_response.json ├── SDK │ ├── IterableAPI.swift │ ├── IterableAppIntegration.swift │ ├── IterableConfig.swift │ ├── IterableLogging.swift │ └── IterableMessaging.swift └── ui-components │ ├── swiftui │ ├── InboxViewRepresentable.swift │ └── IterableInboxView.swift │ └── uikit │ ├── IterableEmbeddedView.swift │ ├── IterableEmbeddedView.xib │ ├── IterableInboxCell.swift │ ├── IterableInboxNavigationViewController.swift │ ├── IterableInboxViewController.swift │ └── SampleInboxCell.xib └── tests ├── business-critical-integration ├── AGENT_README.md ├── Business Critical Integration Testing tasks_details.md ├── README.md ├── documentation │ ├── JWT_SCREENSHOT.png │ ├── MOBILE_KEY_SCREENSHOT.png │ ├── PROJECT_ID_SCREENSHOT.png │ └── SERVER_SIDE_KEY_SCREENSHOT.png ├── integration-test-app │ ├── IterableSDK-Integration-Tester.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── IterableSDK-Integration-Tester.xcscheme │ ├── IterableSDK-Integration-Tester │ │ ├── App │ │ │ ├── AppDelegate+IntegrationTest.swift │ │ │ ├── AppDelegate.swift │ │ │ ├── Backend │ │ │ │ ├── BackendStatusViewController.swift │ │ │ │ ├── IterableAPIClient.swift │ │ │ │ └── PushNotificationSender.swift │ │ │ ├── EmbeddedMessage │ │ │ │ ├── EmbeddedMessageTestHostingController.swift │ │ │ │ ├── EmbeddedMessageTestView.swift │ │ │ │ └── EmbeddedMessageTestViewModel.swift │ │ │ ├── Home │ │ │ │ ├── HomeViewController.swift │ │ │ │ ├── IterableSDKStatusView.swift │ │ │ │ ├── PushNotificationStatusView.swift │ │ │ │ └── PushNotificationTestViewController.swift │ │ │ ├── InAppMessage │ │ │ │ ├── InAppMessageTestHostingController.swift │ │ │ │ ├── InAppMessageTestView.swift │ │ │ │ ├── InAppMessageTestViewModel.swift │ │ │ │ └── TestViewController.swift │ │ │ ├── NetworkMonitor │ │ │ │ ├── JSONViewerViewController.swift │ │ │ │ ├── NetworkMonitorViewController.swift │ │ │ │ └── NetworkRequestDetailViewController.swift │ │ │ └── Utilities │ │ │ │ ├── NetworkMonitor.swift │ │ │ │ └── UIViewController+Extension.swift │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x-1.png │ │ │ │ │ ├── Icon-App20x20.png │ │ │ │ │ ├── Icon-App20x20@2x.png │ │ │ │ │ ├── Icon-App29x29.png │ │ │ │ │ ├── Icon-App29x29@2x.png │ │ │ │ │ ├── Icon-App40x40.png │ │ │ │ │ ├── Icon-App40x40@2x.png │ │ │ │ │ ├── Icon-App76x76.png │ │ │ │ │ ├── Icon-App76x76@2x.png │ │ │ │ │ ├── Icon-App83.5@2x.png │ │ │ │ │ └── iTunesArtwork@2x.png │ │ │ │ ├── Black.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── th.jpeg │ │ │ │ ├── Cappuccino.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── th-1.jpeg │ │ │ │ ├── Contents.json │ │ │ │ ├── Latte.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Unknown-1.jpeg │ │ │ │ ├── Mocha.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Unknown.jpeg │ │ │ │ └── iterableLogo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── iterableLogo.pdf │ │ │ └── Base.lproj │ │ │ │ └── LaunchScreen.storyboard │ │ ├── SupportingFiles │ │ │ ├── Info.plist │ │ │ └── iterablesdk-integration-tester.entitlements │ │ └── Tests │ │ │ ├── EmbeddedMessageIntegrationTests.swift │ │ │ ├── InAppMessageIntegrationTests.swift │ │ │ ├── Incomplete │ │ │ └── DeepLinkingIntegrationTests.swift │ │ │ ├── IntegrationTestBase.swift │ │ │ ├── PushNotificationIntegrationTests.swift │ │ │ └── Utilities │ │ │ ├── CampaignManager.swift │ │ │ ├── IterableAPIClient.swift │ │ │ ├── MetricsValidator.swift │ │ │ ├── PushNotificationSender.swift │ │ │ └── ScreenshotCapture.swift │ └── IterableSDK-Integration-TesterUITests │ │ ├── IterableSDK_Integration_TesterUITests.swift │ │ └── IterableSDK_Integration_TesterUITestsLaunchTests.swift └── scripts │ ├── build-and-run.sh │ ├── build.sh │ ├── requirements.txt │ ├── reset-testing-environment.sh │ ├── run-tests.sh │ ├── setup-local-environment.sh │ ├── test_push.py │ └── validate-setup.sh ├── common ├── Common.swift ├── CommonExtensions.swift ├── CommonMocks.swift ├── MockAPNSTypeChecker.swift ├── MockApplicationStateProvider.swift ├── MockAuthManager.swift ├── MockCustomActionDelegate.swift ├── MockDateProvider.swift ├── MockInAppDelegate.swift ├── MockInAppDisplayer.swift ├── MockInAppFetcher.swift ├── MockInAppPersister.swift ├── MockInboxState.swift ├── MockLocalStorage.swift ├── MockMessageViewControllerEventTracker.swift ├── MockNetworkSession.swift ├── MockNotificationCenter.swift ├── MockNotificationResponse.swift ├── MockPushTracker.swift ├── MockUrlDelegate.swift ├── MockUrlOpener.swift └── MockWebView.swift ├── endpoint-tests.xctestplan ├── endpoint-tests ├── CI.swift.template ├── E2EDependencyContainer.swift ├── EndpointTests.swift ├── Environment.swift ├── Info.plist ├── IterableAPISupport.swift ├── OfflineModeE2ETests.swift └── scripts │ ├── env_vars.sh.sample │ └── run_test.sh ├── hosting-apps ├── host-app │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x-1.png │ │ │ ├── Icon-App20x20.png │ │ │ ├── Icon-App20x20@2x.png │ │ │ ├── Icon-App29x29.png │ │ │ ├── Icon-App29x29@2x.png │ │ │ ├── Icon-App40x40.png │ │ │ ├── Icon-App40x40@2x.png │ │ │ ├── Icon-App76x76.png │ │ │ ├── Icon-App76x76@2x.png │ │ │ ├── Icon-App83.5@2x.png │ │ │ └── iTunesArtwork@2x.png │ │ ├── Black.imageset │ │ │ ├── Contents.json │ │ │ └── th.jpeg │ │ ├── Cappuccino.imageset │ │ │ ├── Contents.json │ │ │ └── th-1.jpeg │ │ ├── Contents.json │ │ ├── Latte.imageset │ │ │ ├── Contents.json │ │ │ └── Unknown-1.jpeg │ │ ├── Mocha.imageset │ │ │ ├── Contents.json │ │ │ └── Unknown.jpeg │ │ └── iterableLogo.imageset │ │ │ ├── Contents.json │ │ │ └── iterableLogo.pdf │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── host-app.entitlements ├── inbox-ui-tests-app │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x-1.png │ │ │ ├── Icon-App20x20.png │ │ │ ├── Icon-App20x20@2x.png │ │ │ ├── Icon-App29x29.png │ │ │ ├── Icon-App29x29@2x.png │ │ │ ├── Icon-App40x40.png │ │ │ ├── Icon-App40x40@2x.png │ │ │ ├── Icon-App76x76.png │ │ │ ├── Icon-App76x76@2x.png │ │ │ ├── Icon-App83.5@2x.png │ │ │ └── iTunesArtwork@2x.png │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CustomInboxCell3.swift │ ├── CustomInboxCell3.xib │ ├── Info.plist │ ├── MainViewController.swift │ ├── NetworkDetailViewController.swift │ ├── NetworkTableViewController.swift │ ├── inbox-messages-1.json │ ├── inbox-messages-2.json │ ├── inbox-messages-3.json │ ├── inbox-ui-tests-app.entitlements │ └── mocha.png └── ui-tests-app │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x-1.png │ │ ├── Icon-App20x20.png │ │ ├── Icon-App20x20@2x.png │ │ ├── Icon-App29x29.png │ │ ├── Icon-App29x29@2x.png │ │ ├── Icon-App40x40.png │ │ ├── Icon-App40x40@2x.png │ │ ├── Icon-App76x76.png │ │ ├── Icon-App76x76@2x.png │ │ ├── Icon-App83.5@2x.png │ │ └── iTunesArtwork@2x.png │ ├── Black.imageset │ │ ├── Contents.json │ │ └── th.jpeg │ ├── Cappuccino.imageset │ │ ├── Contents.json │ │ └── th-1.jpeg │ ├── Contents.json │ ├── Latte.imageset │ │ ├── Contents.json │ │ └── Unknown-1.jpeg │ ├── Mocha.imageset │ │ ├── Contents.json │ │ └── Unknown.jpeg │ └── iterableLogo.imageset │ │ ├── Contents.json │ │ └── iterableLogo.pdf │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── ui-tests-app.entitlements ├── inbox-ui-tests ├── InboxCustomizationTests.swift ├── InboxUITests.swift ├── InboxUITestsHelper.swift ├── Info.plist ├── NavInboxSessionUITests.swift └── PopupInboxSessionUITests.swift ├── notification-extension-tests ├── Info.plist ├── NotificationExtensionTests.swift ├── TestFileTests.swift └── swirl.mp4 ├── offline-events-tests ├── HealthMonitorTests.swift ├── Info.plist ├── MockPersistence.swift ├── NetworkConnectivityCheckerTests.swift ├── NetworkConnectivityManagerTests.swift ├── RequestHandlerTests.swift ├── TaskProcessorTests.swift ├── TaskRunnerTests.swift ├── TaskSchedulerTests.swift └── TasksCRUDTests.swift ├── swift-sdk.xctestplan ├── ui-tests ├── Info.plist ├── IterableInboxViewControllerUITests.swift ├── UITests.swift └── UITestsHelper.swift └── unit-tests ├── APNSTypeCheckerTests.swift ├── ActionRunnerTests.swift ├── AuthTests.swift ├── AutoRegistrationTests.swift ├── BlankApiClient.swift ├── ClassExtensionsTests.swift ├── CombinationComplexCriteria.swift ├── CombinationLogicEventTypeCriteria.swift ├── CommerceItemTests.swift ├── ComparatorDataTypeWithArrayInput.swift ├── ComparatorTypeDoesNotEqualMatchTest.swift ├── ConsentTrackingTests.swift ├── CustomEventUserUpdateTestCaseTests.swift ├── DataTypeComparatorSearchQueryCriteria.swift ├── DeepLinkTests.swift ├── EmbeddedManagerTests.swift ├── EmbeddedMessagingProcessorTests.swift ├── EmbeddedMessagingSerializationTests.swift ├── EmbeddedSessionManagerTests.swift ├── InAppFilePersistenceTests.swift ├── InAppHelperTests.swift ├── InAppMessageProcessorTests.swift ├── InAppNavigationTests.swift ├── InAppParsingTests.swift ├── InAppPersistenceTests.swift ├── InAppPresenterTests.swift ├── InAppPriorityTests.swift ├── InAppTests.swift ├── InboxImpressionTrackerTests.swift ├── InboxMessageViewModelTests.swift ├── InboxSessionManagerTests.swift ├── InboxTests.swift ├── InboxViewControllerViewModelTests.swift ├── Info.plist ├── IsOneOfInNotOneOfCriteareaTest.swift ├── IterableAPIResponseTests.swift ├── IterableAPITests.swift ├── IterableApiCriteriaFetchTests.swift ├── IterableDataRegionObjCTests.m ├── IterableHtmlMessageViewControllerTests.swift ├── IterableInboxViewControllerTests.swift ├── IterableRequestTests.swift ├── IterableRequestUtilTests.swift ├── IterableUtilTests.swift ├── KeychainWrapperTests.swift ├── LocalStorageTests.swift ├── LoggingTests.swift ├── Mocks.swift ├── NestedFieldSupportForArrayData.swift ├── NotificationMetadataTests.swift ├── NotificationObserverTests.swift ├── NotificationResponseTests.swift ├── OrderedDictionaryTests.swift ├── PendingTests.swift ├── RegistrationTests.swift ├── RequestCreatorTests.swift ├── SampleInboxViewDelegateImplementations.swift ├── TestInAppPayloadGenerator.swift ├── TestUtils.swift ├── UnknownUserComplexCriteriaMatchTests.swift ├── UnknownUserCriteriaIsSetTests.swift ├── UnknownUserCriteriaMatchTests.swift ├── UserMergeScenariosTests.swift ├── ValidateCustomEventUserUpdateAPITest.swift ├── ValidateStoredEventCheckUnknownToKnownUserTest.swift ├── ValidateTokenForDestinationUserTest.swift ├── WebViewProtocolTests.swift ├── dev-1.mobileprovision ├── image.jpg ├── prod-1.mobileprovision └── unit-tests-Bridging-Header.h /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/bcit-integration-test-embedded-messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.github/workflows/bcit-integration-test-embedded-messages.yml -------------------------------------------------------------------------------- /.github/workflows/bcit-integration-test-in-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.github/workflows/bcit-integration-test-in-app.yml -------------------------------------------------------------------------------- /.github/workflows/bcit-integration-test-push-notification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.github/workflows/bcit-integration-test-push-notification.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/ios-sdk-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.github/workflows/ios-sdk-release.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-for-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.github/workflows/prepare-for-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/.swiftformat -------------------------------------------------------------------------------- /AGENT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/AGENT_README.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Iterable-iOS-AppExtensions.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/Iterable-iOS-AppExtensions.podspec -------------------------------------------------------------------------------- /Iterable-iOS-SDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/Iterable-iOS-SDK.podspec -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/README.md -------------------------------------------------------------------------------- /agent_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/agent_build.sh -------------------------------------------------------------------------------- /agent_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/agent_test.sh -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/codecov.yml -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /images/Iterable-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/images/Iterable-Logo.png -------------------------------------------------------------------------------- /notification-extension/ITBNotificationServiceExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/notification-extension/ITBNotificationServiceExtension.swift -------------------------------------------------------------------------------- /notification-extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/notification-extension/Info.plist -------------------------------------------------------------------------------- /notification-extension/IterableAppExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/notification-extension/IterableAppExtensions.h -------------------------------------------------------------------------------- /notification-extension/NotificationContentParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/notification-extension/NotificationContentParser.swift -------------------------------------------------------------------------------- /notification-extension/NotificationExtensionConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/notification-extension/NotificationExtensionConstants.swift -------------------------------------------------------------------------------- /notification-extension/TestFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/notification-extension/TestFile.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/AppDelegate.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Home.imageset/01.Home-128 copy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Home.imageset/01.Home-128 copy 2.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Home.imageset/01.Home-128 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Home.imageset/01.Home-128 copy.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Home.imageset/01.Home-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Home.imageset/01.Home-128.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Home.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Mail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Mail.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Mail.imageset/mail-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Mail.imageset/mail-1x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Mail.imageset/mail-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Mail.imageset/mail-2x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Mail.imageset/mail-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Assets.xcassets/Mail.imageset/mail-3x.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Change Date Format/Change Date Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Change Date Format/Change Date Format.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Change Date Format/change-date-format-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Change Date Format/change-date-format-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Advanced Inbox Tab/AdvancedInbox.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Advanced Inbox Tab/AdvancedInbox.storyboard -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Advanced Inbox Tab/AdvancedInboxCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Advanced Inbox Tab/AdvancedInboxCell.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Advanced Inbox Tab/AdvancedInboxCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Advanced Inbox Tab/AdvancedInboxCell.xib -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Advanced Inbox Tab/AdvancedInboxViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Advanced Inbox Tab/AdvancedInboxViewDelegate.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Advanced Inbox Tab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Advanced Inbox Tab/README.md -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Custom Inbox Tab/CustomInbox.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Custom Inbox Tab/CustomInbox.storyboard -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Custom Inbox Tab/CustomInboxCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Custom Inbox Tab/CustomInboxCell.xib -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Custom Inbox Tab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Custom Inbox Tab/README.md -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Custom Inbox Tab/custom-inbox-tab-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Custom Inbox Tab/custom-inbox-tab-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Simple Inbox Tab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Simple Inbox Tab/README.md -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Simple Inbox Tab/SimpleInbox.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Simple Inbox Tab/SimpleInbox.storyboard -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Simple Inbox Tab/simple-inbox-tab-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Custom Inbox Tabs/Simple Inbox Tab/simple-inbox-tab-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Filter By Message Title/Filter By Message Title.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Filter By Message Title/Filter By Message Title.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Filter By Message Title/filter-by-message-title-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Filter By Message Title/filter-by-message-title-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Filter By Message Type/FilterByMessageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Filter By Message Type/FilterByMessageType.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Filter By Message Type/filter-by-message-type-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Filter By Message Type/filter-by-message-type-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Inbox With Additional Fields/AdditionalFieldsInboxCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Inbox With Additional Fields/AdditionalFieldsInboxCell.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Inbox With Additional Fields/AdditionalFieldsInboxCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Inbox With Additional Fields/AdditionalFieldsInboxCell.xib -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Inbox With Additional Fields/Inbox With Additional Fields.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Inbox With Additional Fields/Inbox With Additional Fields.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Inbox With Custom Cell/DarkInboxCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Inbox With Custom Cell/DarkInboxCell.xib -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Inbox With Custom Cell/Inbox With Custom Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Inbox With Custom Cell/Inbox With Custom Cell.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Inbox With Custom Cell/inbox-with-custom-cell-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Inbox With Custom Cell/inbox-with-custom-cell-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Inbox With Multiple Cell Types/CustomInboxCell1.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Inbox With Multiple Cell Types/CustomInboxCell1.xib -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Inbox With Multiple Cell Types/CustomInboxCell2.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Inbox With Multiple Cell Types/CustomInboxCell2.xib -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Info.plist -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/MainViewController.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Mock Data/DataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Mock Data/DataManager.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Mock Data/MainTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Mock Data/MainTabBarController.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Mock Data/MockInAppFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Mock Data/MockInAppFetcher.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Mock Data/MockNetworkSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Mock Data/MockNetworkSession.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Mock Data/black-coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Mock Data/black-coffee.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Mock Data/cappuccino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Mock Data/cappuccino.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Mock Data/inbox-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Mock Data/inbox-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Mock Data/latte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Mock Data/latte.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Mock Data/mocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Mock Data/mocha.png -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Multiple Sections/Multiple Sections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Multiple Sections/Multiple Sections.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Multiple Sections/multiple-sections-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Multiple Sections/multiple-sections-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Simple Inbox Without Nav/Simple Inbox Without Nav.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Simple Inbox Without Nav/Simple Inbox Without Nav.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Simple Inbox Without Nav/simple-inbox-without-nav-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Simple Inbox Without Nav/simple-inbox-without-nav-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Simple Inbox/Simple Inbox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Simple Inbox/Simple Inbox.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Simple Inbox/simple-inbox-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Simple Inbox/simple-inbox-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Sort By Date Ascending/Sort By Date Ascending.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Sort By Date Ascending/Sort By Date Ascending.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Sort By Date Ascending/sort-by-date-ascending-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Sort By Date Ascending/sort-by-date-ascending-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Sort By Title Ascending/Sort By Title Ascending.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Sort By Title Ascending/Sort By Title Ascending.swift -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/Sort By Title Ascending/sort-by-title-ascending-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/Sort By Title Ascending/sort-by-title-ascending-messages.json -------------------------------------------------------------------------------- /sample-apps/inbox-customization/inbox-customization/inbox-customization.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/inbox-customization/inbox-customization/inbox-customization.entitlements -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app-notification-extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app-notification-extension/Info.plist -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app-notification-extension/NotificationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app-notification-extension/NotificationService.h -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app-notification-extension/NotificationService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app-notification-extension/NotificationService.m -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/AppDelegate.h -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/AppDelegate.m -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Black.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Black.imageset/th.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Black.imageset/th.jpeg -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Cappuccino.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Cappuccino.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Cappuccino.imageset/th-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Cappuccino.imageset/th-1.jpeg -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Latte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Latte.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Latte.imageset/Unknown-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Latte.imageset/Unknown-1.jpeg -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Mocha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Mocha.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Mocha.imageset/Unknown.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/Mocha.imageset/Unknown.jpeg -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/iterableLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/iterableLogo.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/iterableLogo.imageset/iterableLogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Assets.xcassets/iterableLogo.imageset/iterableLogo.pdf -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/CoffeeListTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/CoffeeListTableViewController.h -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/CoffeeListTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/CoffeeListTableViewController.m -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/CoffeeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/CoffeeType.h -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/CoffeeType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/CoffeeType.m -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/CoffeeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/CoffeeViewController.h -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/CoffeeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/CoffeeViewController.m -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/DeepLinkHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/DeepLinkHandler.h -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/DeepLinkHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/DeepLinkHandler.m -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/Info.plist -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/LoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/LoginViewController.h -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/LoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/LoginViewController.m -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/main.m -------------------------------------------------------------------------------- /sample-apps/objc-sample-app/objc-sample-app/objc-sample-app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/objc-sample-app/objc-sample-app/objc-sample-app.entitlements -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app-notification-extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app-notification-extension/Info.plist -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app-notification-extension/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app-notification-extension/NotificationService.swift -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app.xcodeproj/xcshareddata/xcschemes/internal-swift-sample-app.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app.xcodeproj/xcshareddata/xcschemes/internal-swift-sample-app.xcscheme -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app.xcodeproj/xcshareddata/xcschemes/swift-sample-app.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app.xcodeproj/xcshareddata/xcschemes/swift-sample-app.xcscheme -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/AppDelegate.swift -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Black.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Black.imageset/th.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Black.imageset/th.jpeg -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Cappuccino.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Cappuccino.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Cappuccino.imageset/th-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Cappuccino.imageset/th-1.jpeg -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Latte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Latte.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Latte.imageset/Unknown-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Latte.imageset/Unknown-1.jpeg -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Mocha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Mocha.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Mocha.imageset/Unknown.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/Mocha.imageset/Unknown.jpeg -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/iterableLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/iterableLogo.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/iterableLogo.imageset/iterableLogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Assets.xcassets/iterableLogo.imageset/iterableLogo.pdf -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/CoffeeListTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/CoffeeListTableViewController.swift -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/CoffeeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/CoffeeType.swift -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/CoffeeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/CoffeeViewController.swift -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/DeepLinkHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/DeepLinkHandler.swift -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/EmbeddedMessages/EmbeddedMessagesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/EmbeddedMessages/EmbeddedMessagesViewController.swift -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/EmbeddedMessages/IterableCardViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/EmbeddedMessages/IterableCardViewCell.swift -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/EmbeddedMessages/embeddedmessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/EmbeddedMessages/embeddedmessages.json -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/Info.plist -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/LoginViewController.swift -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/UIViewController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/UIViewController+Extension.swift -------------------------------------------------------------------------------- /sample-apps/swift-sample-app/swift-sample-app/swift-sample-app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swift-sample-app/swift-sample-app/swift-sample-app.entitlements -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/README.md -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/notification-extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/notification-extension/Info.plist -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/notification-extension/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/notification-extension/NotificationService.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/AppModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/AppModel.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Black.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Black.imageset/th.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Black.imageset/th.jpeg -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Cappuccino.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Cappuccino.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Cappuccino.imageset/th-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Cappuccino.imageset/th-1.jpeg -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Latte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Latte.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Latte.imageset/Unknown-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Latte.imageset/Unknown-1.jpeg -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Mocha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Mocha.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Mocha.imageset/Unknown.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/Mocha.imageset/Unknown.jpeg -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/iterableLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/iterableLogo.imageset/Contents.json -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/iterableLogo.imageset/iterableLogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Assets.xcassets/iterableLogo.imageset/iterableLogo.pdf -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Coffee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Coffee.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/DeeplinkHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/DeeplinkHandler.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Info.plist -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/IterableHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/IterableHelper.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/MainApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/MainApp.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Notifications.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Views/CoffeeListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Views/CoffeeListView.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Views/CoffeeRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Views/CoffeeRow.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Views/CoffeeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Views/CoffeeView.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Views/ContentView.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/Views/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/Views/LoginView.swift -------------------------------------------------------------------------------- /sample-apps/swiftui-sample-app/swiftui-sample-app/swiftui-sample-app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/sample-apps/swiftui-sample-app/swiftui-sample-app/swiftui-sample-app.entitlements -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/script.sh -------------------------------------------------------------------------------- /scripts/build-target-module-framework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/scripts/build-target-module-framework.sh -------------------------------------------------------------------------------- /scripts/create-xcframework-zips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/scripts/create-xcframework-zips.sh -------------------------------------------------------------------------------- /scripts/generate-zips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/scripts/generate-zips.sh -------------------------------------------------------------------------------- /scripts/process_xcresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/scripts/process_xcresult.py -------------------------------------------------------------------------------- /swift-sdk.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /swift-sdk.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /swift-sdk.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /swift-sdk.xcodeproj/xcshareddata/xcschemes/endpoint-tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk.xcodeproj/xcshareddata/xcschemes/endpoint-tests.xcscheme -------------------------------------------------------------------------------- /swift-sdk.xcodeproj/xcshareddata/xcschemes/inbox-ui-tests-app.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk.xcodeproj/xcshareddata/xcschemes/inbox-ui-tests-app.xcscheme -------------------------------------------------------------------------------- /swift-sdk.xcodeproj/xcshareddata/xcschemes/swift-sdk-parallel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk.xcodeproj/xcshareddata/xcschemes/swift-sdk-parallel.xcscheme -------------------------------------------------------------------------------- /swift-sdk.xcodeproj/xcshareddata/xcschemes/swift-sdk.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk.xcodeproj/xcshareddata/xcschemes/swift-sdk.xcscheme -------------------------------------------------------------------------------- /swift-sdk.xcodeproj/xcshareddata/xcschemes/ui-tests-app.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk.xcodeproj/xcshareddata/xcschemes/ui-tests-app.xcscheme -------------------------------------------------------------------------------- /swift-sdk/Core/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Constants.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Models/CommerceItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Models/CommerceItem.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Models/IterableAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Models/IterableAction.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Models/IterableActionContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Models/IterableActionContext.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Models/IterableAttributionInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Models/IterableAttributionInfo.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Models/IterableEmbeddedMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Models/IterableEmbeddedMessage.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Models/IterableInAppMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Models/IterableInAppMessage.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Models/IterablePushNotificationMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Models/IterablePushNotificationMetadata.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Models/RetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Models/RetryPolicy.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Protocols/IterableAuthManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Protocols/IterableAuthManagerProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Protocols/IterableEmbeddedManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Protocols/IterableEmbeddedManagerProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Protocols/IterableEmbeddedUpdateDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Protocols/IterableEmbeddedUpdateDelegate.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Protocols/IterableInAppManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Protocols/IterableInAppManagerProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Protocols/IterableInboxViewControllerViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Protocols/IterableInboxViewControllerViewDelegate.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Utilities/AuthFailure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Utilities/AuthFailure.swift -------------------------------------------------------------------------------- /swift-sdk/Core/Utilities/AuthFailureReason.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Core/Utilities/AuthFailureReason.swift -------------------------------------------------------------------------------- /swift-sdk/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Info.plist -------------------------------------------------------------------------------- /swift-sdk/Internal/APNSTypeChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/APNSTypeChecker.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/ActionRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/ActionRunner.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/AppExtensionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/AppExtensionHelper.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Auth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Auth.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/AuthManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/AuthManager.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/ClassExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/ClassExtensions.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/CoreDataUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/CoreDataUtil.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/DataFieldsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/DataFieldsHelper.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/DateProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/DateProvider.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/DeepLinkManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/DeepLinkManager.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Dwifft/Dwifft+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Dwifft/Dwifft+UIKit.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Dwifft/Dwifft.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Dwifft/Dwifft.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Dwifft/SectionedValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Dwifft/SectionedValues.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/EmbeddedHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/EmbeddedHelper.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/EmbeddedMessagingProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/EmbeddedMessagingProcessor.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/EmbeddedMessagingSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/EmbeddedMessagingSerialization.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/EmbeddedSessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/EmbeddedSessionManager.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/EmptyEmbeddedManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/EmptyEmbeddedManager.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/EmptyInAppManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/EmptyInAppManager.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/HealthMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/HealthMonitor.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/InboxImpressionTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/InboxImpressionTracker.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/InboxMessageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/InboxMessageViewModel.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/InboxSessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/InboxSessionManager.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/InboxState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/InboxState.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/InboxViewControllerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/InboxViewControllerViewModel.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/InboxViewControllerViewModelProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/InboxViewControllerViewModelProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/InboxViewControllerViewModelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/InboxViewControllerViewModelView.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/InternalIterableAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/InternalIterableAPI.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/InternalIterableAppIntegration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/InternalIterableAppIntegration.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableAPICallRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableAPICallRequest.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableAPICallTaskProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableAPICallTaskProcessor.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableAPIMobileFrameworkDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableAPIMobileFrameworkDetector.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableCoreDataPersistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableCoreDataPersistence.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableEmbeddedManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableEmbeddedManager.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableHtmlMessageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableHtmlMessageViewController.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableIdentityResolution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableIdentityResolution.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableInboxCell+Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableInboxCell+Layout.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableNotifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableNotifications.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterablePersistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterablePersistence.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableRequest.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableRequestUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableRequestUtil.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableTask.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableTaskError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableTaskError.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableTaskManagedObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableTaskManagedObject.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableTaskProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableTaskProcessor.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableTaskResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableTaskResult.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableTaskRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableTaskRunner.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableTaskScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableTaskScheduler.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/IterableUserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/IterableUserDefaults.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/MiscEmbeddedClasses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/MiscEmbeddedClasses.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/MiscInboxClasses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/MiscInboxClasses.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Models.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Network/NetworkConnectivityChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Network/NetworkConnectivityChecker.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Network/NetworkConnectivityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Network/NetworkConnectivityManager.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Network/NetworkHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Network/NetworkHelper.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Network/NetworkMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Network/NetworkMonitor.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Network/NetworkSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Network/NetworkSession.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Pending.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Pending.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/RequestHandlerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/RequestHandlerProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/RequestProcessorUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/RequestProcessorUtil.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/RequestSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/RequestSender.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/UnknownUserManager+Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/UnknownUserManager+Functions.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/UnknownUserManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/UnknownUserManager.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/UnknownUserManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/UnknownUserManagerProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/UnknownUserMerge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/UnknownUserMerge.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/DependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/DependencyContainer.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/DependencyContainerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/DependencyContainerProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/IterableLogUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/IterableLogUtil.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/IterableUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/IterableUtil.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/Keychain/IterableKeychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/Keychain/IterableKeychain.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/Keychain/KeychainWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/Keychain/KeychainWrapper.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/LocalStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/LocalStorage.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/LocalStorageProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/LocalStorageProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/NotificationHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/NotificationHelper.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/OrderedDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/OrderedDictionary.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/PersistenceHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/PersistenceHelper.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/ResourceHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/ResourceHelper.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/UIColor+Extension.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/Utilities/WebViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/Utilities/WebViewProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/api-client/ApiClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/api-client/ApiClient.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/api-client/ApiClientProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/api-client/ApiClientProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/api-client/Request/OfflineRequestProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/api-client/Request/OfflineRequestProcessor.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/api-client/Request/OnlineRequestProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/api-client/Request/OnlineRequestProcessor.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/api-client/Request/RequestCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/api-client/Request/RequestCreator.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/api-client/Request/RequestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/api-client/Request/RequestHandler.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/api-client/Request/RequestProcessorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/api-client/Request/RequestProcessorProtocol.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/in-app/InAppCalculations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/in-app/InAppCalculations.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/in-app/InAppContentParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/in-app/InAppContentParser.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/in-app/InAppDisplayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/in-app/InAppDisplayer.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/in-app/InAppHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/in-app/InAppHelper.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/in-app/InAppInternal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/in-app/InAppInternal.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/in-app/InAppManager+Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/in-app/InAppManager+Functions.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/in-app/InAppManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/in-app/InAppManager.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/in-app/InAppMessageParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/in-app/InAppMessageParser.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/in-app/InAppPersistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/in-app/InAppPersistence.swift -------------------------------------------------------------------------------- /swift-sdk/Internal/in-app/InAppPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Internal/in-app/InAppPresenter.swift -------------------------------------------------------------------------------- /swift-sdk/IterableSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/IterableSDK.h -------------------------------------------------------------------------------- /swift-sdk/IterableTokenGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/IterableTokenGenerator.swift -------------------------------------------------------------------------------- /swift-sdk/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /swift-sdk/Resources/Assets.xcassets/Loading.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Resources/Assets.xcassets/Loading.imageset/Contents.json -------------------------------------------------------------------------------- /swift-sdk/Resources/Assets.xcassets/Loading.imageset/circle-of-dots-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Resources/Assets.xcassets/Loading.imageset/circle-of-dots-png.png -------------------------------------------------------------------------------- /swift-sdk/Resources/IterableDataModel.xcdatamodeld/IterableDataModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Resources/IterableDataModel.xcdatamodeld/IterableDataModel.xcdatamodel/contents -------------------------------------------------------------------------------- /swift-sdk/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /swift-sdk/Resources/anoncriteria_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/Resources/anoncriteria_response.json -------------------------------------------------------------------------------- /swift-sdk/SDK/IterableAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/SDK/IterableAPI.swift -------------------------------------------------------------------------------- /swift-sdk/SDK/IterableAppIntegration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/SDK/IterableAppIntegration.swift -------------------------------------------------------------------------------- /swift-sdk/SDK/IterableConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/SDK/IterableConfig.swift -------------------------------------------------------------------------------- /swift-sdk/SDK/IterableLogging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/SDK/IterableLogging.swift -------------------------------------------------------------------------------- /swift-sdk/SDK/IterableMessaging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/SDK/IterableMessaging.swift -------------------------------------------------------------------------------- /swift-sdk/ui-components/swiftui/InboxViewRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/ui-components/swiftui/InboxViewRepresentable.swift -------------------------------------------------------------------------------- /swift-sdk/ui-components/swiftui/IterableInboxView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/ui-components/swiftui/IterableInboxView.swift -------------------------------------------------------------------------------- /swift-sdk/ui-components/uikit/IterableEmbeddedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/ui-components/uikit/IterableEmbeddedView.swift -------------------------------------------------------------------------------- /swift-sdk/ui-components/uikit/IterableEmbeddedView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/ui-components/uikit/IterableEmbeddedView.xib -------------------------------------------------------------------------------- /swift-sdk/ui-components/uikit/IterableInboxCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/ui-components/uikit/IterableInboxCell.swift -------------------------------------------------------------------------------- /swift-sdk/ui-components/uikit/IterableInboxNavigationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/ui-components/uikit/IterableInboxNavigationViewController.swift -------------------------------------------------------------------------------- /swift-sdk/ui-components/uikit/IterableInboxViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/ui-components/uikit/IterableInboxViewController.swift -------------------------------------------------------------------------------- /swift-sdk/ui-components/uikit/SampleInboxCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/swift-sdk/ui-components/uikit/SampleInboxCell.xib -------------------------------------------------------------------------------- /tests/business-critical-integration/AGENT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/AGENT_README.md -------------------------------------------------------------------------------- /tests/business-critical-integration/Business Critical Integration Testing tasks_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/Business Critical Integration Testing tasks_details.md -------------------------------------------------------------------------------- /tests/business-critical-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/README.md -------------------------------------------------------------------------------- /tests/business-critical-integration/documentation/JWT_SCREENSHOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/documentation/JWT_SCREENSHOT.png -------------------------------------------------------------------------------- /tests/business-critical-integration/documentation/MOBILE_KEY_SCREENSHOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/documentation/MOBILE_KEY_SCREENSHOT.png -------------------------------------------------------------------------------- /tests/business-critical-integration/documentation/PROJECT_ID_SCREENSHOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/documentation/PROJECT_ID_SCREENSHOT.png -------------------------------------------------------------------------------- /tests/business-critical-integration/documentation/SERVER_SIDE_KEY_SCREENSHOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/documentation/SERVER_SIDE_KEY_SCREENSHOT.png -------------------------------------------------------------------------------- /tests/business-critical-integration/integration-test-app/IterableSDK-Integration-Tester.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/integration-test-app/IterableSDK-Integration-Tester.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/business-critical-integration/integration-test-app/IterableSDK-Integration-Tester/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/integration-test-app/IterableSDK-Integration-Tester/App/AppDelegate.swift -------------------------------------------------------------------------------- /tests/business-critical-integration/integration-test-app/IterableSDK-Integration-Tester/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/integration-test-app/IterableSDK-Integration-Tester/SupportingFiles/Info.plist -------------------------------------------------------------------------------- /tests/business-critical-integration/scripts/build-and-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/scripts/build-and-run.sh -------------------------------------------------------------------------------- /tests/business-critical-integration/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/scripts/build.sh -------------------------------------------------------------------------------- /tests/business-critical-integration/scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/scripts/requirements.txt -------------------------------------------------------------------------------- /tests/business-critical-integration/scripts/reset-testing-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/scripts/reset-testing-environment.sh -------------------------------------------------------------------------------- /tests/business-critical-integration/scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/scripts/run-tests.sh -------------------------------------------------------------------------------- /tests/business-critical-integration/scripts/setup-local-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/scripts/setup-local-environment.sh -------------------------------------------------------------------------------- /tests/business-critical-integration/scripts/test_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/scripts/test_push.py -------------------------------------------------------------------------------- /tests/business-critical-integration/scripts/validate-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/business-critical-integration/scripts/validate-setup.sh -------------------------------------------------------------------------------- /tests/common/Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/Common.swift -------------------------------------------------------------------------------- /tests/common/CommonExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/CommonExtensions.swift -------------------------------------------------------------------------------- /tests/common/CommonMocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/CommonMocks.swift -------------------------------------------------------------------------------- /tests/common/MockAPNSTypeChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockAPNSTypeChecker.swift -------------------------------------------------------------------------------- /tests/common/MockApplicationStateProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockApplicationStateProvider.swift -------------------------------------------------------------------------------- /tests/common/MockAuthManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockAuthManager.swift -------------------------------------------------------------------------------- /tests/common/MockCustomActionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockCustomActionDelegate.swift -------------------------------------------------------------------------------- /tests/common/MockDateProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockDateProvider.swift -------------------------------------------------------------------------------- /tests/common/MockInAppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockInAppDelegate.swift -------------------------------------------------------------------------------- /tests/common/MockInAppDisplayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockInAppDisplayer.swift -------------------------------------------------------------------------------- /tests/common/MockInAppFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockInAppFetcher.swift -------------------------------------------------------------------------------- /tests/common/MockInAppPersister.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockInAppPersister.swift -------------------------------------------------------------------------------- /tests/common/MockInboxState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockInboxState.swift -------------------------------------------------------------------------------- /tests/common/MockLocalStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockLocalStorage.swift -------------------------------------------------------------------------------- /tests/common/MockMessageViewControllerEventTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockMessageViewControllerEventTracker.swift -------------------------------------------------------------------------------- /tests/common/MockNetworkSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockNetworkSession.swift -------------------------------------------------------------------------------- /tests/common/MockNotificationCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockNotificationCenter.swift -------------------------------------------------------------------------------- /tests/common/MockNotificationResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockNotificationResponse.swift -------------------------------------------------------------------------------- /tests/common/MockPushTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockPushTracker.swift -------------------------------------------------------------------------------- /tests/common/MockUrlDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockUrlDelegate.swift -------------------------------------------------------------------------------- /tests/common/MockUrlOpener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockUrlOpener.swift -------------------------------------------------------------------------------- /tests/common/MockWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/common/MockWebView.swift -------------------------------------------------------------------------------- /tests/endpoint-tests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/endpoint-tests.xctestplan -------------------------------------------------------------------------------- /tests/endpoint-tests/CI.swift.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/endpoint-tests/CI.swift.template -------------------------------------------------------------------------------- /tests/endpoint-tests/E2EDependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/endpoint-tests/E2EDependencyContainer.swift -------------------------------------------------------------------------------- /tests/endpoint-tests/EndpointTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/endpoint-tests/EndpointTests.swift -------------------------------------------------------------------------------- /tests/endpoint-tests/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/endpoint-tests/Environment.swift -------------------------------------------------------------------------------- /tests/endpoint-tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/endpoint-tests/Info.plist -------------------------------------------------------------------------------- /tests/endpoint-tests/IterableAPISupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/endpoint-tests/IterableAPISupport.swift -------------------------------------------------------------------------------- /tests/endpoint-tests/OfflineModeE2ETests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/endpoint-tests/OfflineModeE2ETests.swift -------------------------------------------------------------------------------- /tests/endpoint-tests/scripts/env_vars.sh.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/endpoint-tests/scripts/env_vars.sh.sample -------------------------------------------------------------------------------- /tests/endpoint-tests/scripts/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/endpoint-tests/scripts/run_test.sh -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/AppDelegate.swift -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/Black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/Black.imageset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/Black.imageset/th.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/Black.imageset/th.jpeg -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/Cappuccino.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/Cappuccino.imageset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/Cappuccino.imageset/th-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/Cappuccino.imageset/th-1.jpeg -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/Latte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/Latte.imageset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/Latte.imageset/Unknown-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/Latte.imageset/Unknown-1.jpeg -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/Mocha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/Mocha.imageset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/Mocha.imageset/Unknown.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/Mocha.imageset/Unknown.jpeg -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/iterableLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/iterableLogo.imageset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Assets.xcassets/iterableLogo.imageset/iterableLogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Assets.xcassets/iterableLogo.imageset/iterableLogo.pdf -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/Info.plist -------------------------------------------------------------------------------- /tests/hosting-apps/host-app/host-app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/host-app/host-app.entitlements -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/AppDelegate.swift -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/CustomInboxCell3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/CustomInboxCell3.swift -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/CustomInboxCell3.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/CustomInboxCell3.xib -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/Info.plist -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/MainViewController.swift -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/NetworkDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/NetworkDetailViewController.swift -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/NetworkTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/NetworkTableViewController.swift -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/inbox-messages-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/inbox-messages-1.json -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/inbox-messages-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/inbox-messages-2.json -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/inbox-messages-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/inbox-messages-3.json -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/inbox-ui-tests-app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/inbox-ui-tests-app.entitlements -------------------------------------------------------------------------------- /tests/hosting-apps/inbox-ui-tests-app/mocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/inbox-ui-tests-app/mocha.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/AppDelegate.swift -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x-1.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App20x20@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App29x29@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App40x40@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App76x76@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/Icon-App83.5@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/Black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/Black.imageset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/Black.imageset/th.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/Black.imageset/th.jpeg -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/Cappuccino.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/Cappuccino.imageset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/Cappuccino.imageset/th-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/Cappuccino.imageset/th-1.jpeg -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/Latte.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/Latte.imageset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/Latte.imageset/Unknown-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/Latte.imageset/Unknown-1.jpeg -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/Mocha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/Mocha.imageset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/Mocha.imageset/Unknown.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/Mocha.imageset/Unknown.jpeg -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/iterableLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/iterableLogo.imageset/Contents.json -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Assets.xcassets/iterableLogo.imageset/iterableLogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Assets.xcassets/iterableLogo.imageset/iterableLogo.pdf -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/Info.plist -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/ViewController.swift -------------------------------------------------------------------------------- /tests/hosting-apps/ui-tests-app/ui-tests-app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/hosting-apps/ui-tests-app/ui-tests-app.entitlements -------------------------------------------------------------------------------- /tests/inbox-ui-tests/InboxCustomizationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/inbox-ui-tests/InboxCustomizationTests.swift -------------------------------------------------------------------------------- /tests/inbox-ui-tests/InboxUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/inbox-ui-tests/InboxUITests.swift -------------------------------------------------------------------------------- /tests/inbox-ui-tests/InboxUITestsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/inbox-ui-tests/InboxUITestsHelper.swift -------------------------------------------------------------------------------- /tests/inbox-ui-tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/inbox-ui-tests/Info.plist -------------------------------------------------------------------------------- /tests/inbox-ui-tests/NavInboxSessionUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/inbox-ui-tests/NavInboxSessionUITests.swift -------------------------------------------------------------------------------- /tests/inbox-ui-tests/PopupInboxSessionUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/inbox-ui-tests/PopupInboxSessionUITests.swift -------------------------------------------------------------------------------- /tests/notification-extension-tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/notification-extension-tests/Info.plist -------------------------------------------------------------------------------- /tests/notification-extension-tests/NotificationExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/notification-extension-tests/NotificationExtensionTests.swift -------------------------------------------------------------------------------- /tests/notification-extension-tests/TestFileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/notification-extension-tests/TestFileTests.swift -------------------------------------------------------------------------------- /tests/notification-extension-tests/swirl.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/notification-extension-tests/swirl.mp4 -------------------------------------------------------------------------------- /tests/offline-events-tests/HealthMonitorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/offline-events-tests/HealthMonitorTests.swift -------------------------------------------------------------------------------- /tests/offline-events-tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/offline-events-tests/Info.plist -------------------------------------------------------------------------------- /tests/offline-events-tests/MockPersistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/offline-events-tests/MockPersistence.swift -------------------------------------------------------------------------------- /tests/offline-events-tests/NetworkConnectivityCheckerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/offline-events-tests/NetworkConnectivityCheckerTests.swift -------------------------------------------------------------------------------- /tests/offline-events-tests/NetworkConnectivityManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/offline-events-tests/NetworkConnectivityManagerTests.swift -------------------------------------------------------------------------------- /tests/offline-events-tests/RequestHandlerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/offline-events-tests/RequestHandlerTests.swift -------------------------------------------------------------------------------- /tests/offline-events-tests/TaskProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/offline-events-tests/TaskProcessorTests.swift -------------------------------------------------------------------------------- /tests/offline-events-tests/TaskRunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/offline-events-tests/TaskRunnerTests.swift -------------------------------------------------------------------------------- /tests/offline-events-tests/TaskSchedulerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/offline-events-tests/TaskSchedulerTests.swift -------------------------------------------------------------------------------- /tests/offline-events-tests/TasksCRUDTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/offline-events-tests/TasksCRUDTests.swift -------------------------------------------------------------------------------- /tests/swift-sdk.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/swift-sdk.xctestplan -------------------------------------------------------------------------------- /tests/ui-tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/ui-tests/Info.plist -------------------------------------------------------------------------------- /tests/ui-tests/IterableInboxViewControllerUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/ui-tests/IterableInboxViewControllerUITests.swift -------------------------------------------------------------------------------- /tests/ui-tests/UITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/ui-tests/UITests.swift -------------------------------------------------------------------------------- /tests/ui-tests/UITestsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/ui-tests/UITestsHelper.swift -------------------------------------------------------------------------------- /tests/unit-tests/APNSTypeCheckerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/APNSTypeCheckerTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/ActionRunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/ActionRunnerTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/AuthTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/AuthTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/AutoRegistrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/AutoRegistrationTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/BlankApiClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/BlankApiClient.swift -------------------------------------------------------------------------------- /tests/unit-tests/ClassExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/ClassExtensionsTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/CombinationComplexCriteria.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/CombinationComplexCriteria.swift -------------------------------------------------------------------------------- /tests/unit-tests/CombinationLogicEventTypeCriteria.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/CombinationLogicEventTypeCriteria.swift -------------------------------------------------------------------------------- /tests/unit-tests/CommerceItemTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/CommerceItemTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/ComparatorDataTypeWithArrayInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/ComparatorDataTypeWithArrayInput.swift -------------------------------------------------------------------------------- /tests/unit-tests/ComparatorTypeDoesNotEqualMatchTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/ComparatorTypeDoesNotEqualMatchTest.swift -------------------------------------------------------------------------------- /tests/unit-tests/ConsentTrackingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/ConsentTrackingTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/CustomEventUserUpdateTestCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/CustomEventUserUpdateTestCaseTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/DataTypeComparatorSearchQueryCriteria.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/DataTypeComparatorSearchQueryCriteria.swift -------------------------------------------------------------------------------- /tests/unit-tests/DeepLinkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/DeepLinkTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/EmbeddedManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/EmbeddedManagerTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/EmbeddedMessagingProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/EmbeddedMessagingProcessorTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/EmbeddedMessagingSerializationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/EmbeddedMessagingSerializationTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/EmbeddedSessionManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/EmbeddedSessionManagerTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InAppFilePersistenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InAppFilePersistenceTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InAppHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InAppHelperTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InAppMessageProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InAppMessageProcessorTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InAppNavigationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InAppNavigationTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InAppParsingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InAppParsingTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InAppPersistenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InAppPersistenceTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InAppPresenterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InAppPresenterTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InAppPriorityTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InAppPriorityTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InAppTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InboxImpressionTrackerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InboxImpressionTrackerTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InboxMessageViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InboxMessageViewModelTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InboxSessionManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InboxSessionManagerTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InboxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InboxTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/InboxViewControllerViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/InboxViewControllerViewModelTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/Info.plist -------------------------------------------------------------------------------- /tests/unit-tests/IsOneOfInNotOneOfCriteareaTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/IsOneOfInNotOneOfCriteareaTest.swift -------------------------------------------------------------------------------- /tests/unit-tests/IterableAPIResponseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/IterableAPIResponseTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/IterableAPITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/IterableAPITests.swift -------------------------------------------------------------------------------- /tests/unit-tests/IterableApiCriteriaFetchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/IterableApiCriteriaFetchTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/IterableDataRegionObjCTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/IterableDataRegionObjCTests.m -------------------------------------------------------------------------------- /tests/unit-tests/IterableHtmlMessageViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/IterableHtmlMessageViewControllerTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/IterableInboxViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/IterableInboxViewControllerTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/IterableRequestTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/IterableRequestTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/IterableRequestUtilTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/IterableRequestUtilTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/IterableUtilTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/IterableUtilTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/KeychainWrapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/KeychainWrapperTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/LocalStorageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/LocalStorageTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/LoggingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/LoggingTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/Mocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/Mocks.swift -------------------------------------------------------------------------------- /tests/unit-tests/NestedFieldSupportForArrayData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/NestedFieldSupportForArrayData.swift -------------------------------------------------------------------------------- /tests/unit-tests/NotificationMetadataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/NotificationMetadataTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/NotificationObserverTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/NotificationObserverTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/NotificationResponseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/NotificationResponseTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/OrderedDictionaryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/OrderedDictionaryTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/PendingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/PendingTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/RegistrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/RegistrationTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/RequestCreatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/RequestCreatorTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/SampleInboxViewDelegateImplementations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/SampleInboxViewDelegateImplementations.swift -------------------------------------------------------------------------------- /tests/unit-tests/TestInAppPayloadGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/TestInAppPayloadGenerator.swift -------------------------------------------------------------------------------- /tests/unit-tests/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/TestUtils.swift -------------------------------------------------------------------------------- /tests/unit-tests/UnknownUserComplexCriteriaMatchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/UnknownUserComplexCriteriaMatchTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/UnknownUserCriteriaIsSetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/UnknownUserCriteriaIsSetTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/UnknownUserCriteriaMatchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/UnknownUserCriteriaMatchTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/UserMergeScenariosTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/UserMergeScenariosTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/ValidateCustomEventUserUpdateAPITest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/ValidateCustomEventUserUpdateAPITest.swift -------------------------------------------------------------------------------- /tests/unit-tests/ValidateStoredEventCheckUnknownToKnownUserTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/ValidateStoredEventCheckUnknownToKnownUserTest.swift -------------------------------------------------------------------------------- /tests/unit-tests/ValidateTokenForDestinationUserTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/ValidateTokenForDestinationUserTest.swift -------------------------------------------------------------------------------- /tests/unit-tests/WebViewProtocolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/WebViewProtocolTests.swift -------------------------------------------------------------------------------- /tests/unit-tests/dev-1.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/dev-1.mobileprovision -------------------------------------------------------------------------------- /tests/unit-tests/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/image.jpg -------------------------------------------------------------------------------- /tests/unit-tests/prod-1.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/prod-1.mobileprovision -------------------------------------------------------------------------------- /tests/unit-tests/unit-tests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iterable/iterable-swift-sdk/HEAD/tests/unit-tests/unit-tests-Bridging-Header.h --------------------------------------------------------------------------------