├── .gitignore ├── BB-github.jpg ├── BitBotATVDebug.entitlements ├── BitBotATVRelease.entitlements ├── BitBotATVTests ├── BitBot.xctestplan ├── BitBotATVTests.swift └── Info.plist ├── BitBotDebug.entitlements ├── Bitrise.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ ├── BitBot.xcscheme │ │ └── BitriseATV.xcscheme └── xcuserdata │ └── zardoz.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Bitrise.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Bitrise ├── AppDelegate.h ├── AppDelegate.m ├── BitBotATV.xctestplan ├── Bitrise-Bridging-Header.h ├── Bitrise.entitlements ├── BitriseCompat.h ├── Container │ ├── BRContainerBuilder.h │ ├── BRContainerBuilder.m │ ├── BRDependencyContainer.h │ └── BRDependencyContainer.m ├── Controller │ ├── Accounts │ │ ├── BRAccountsViewController.h │ │ ├── BRAccountsViewController.m │ │ ├── BRKeyInputViewController.h │ │ ├── BRKeyInputViewController.m │ │ ├── BRKeyRequestContext.h │ │ └── BRKeyRequestContext.m │ ├── BRAboutViewController.h │ ├── BRAboutViewController.m │ ├── BRMainController.h │ ├── BRMainController.m │ ├── BRViewController.h │ ├── BRViewController.m │ └── Logs │ │ ├── BRLogsTextViewController.h │ │ ├── BRLogsTextViewController.m │ │ ├── BRLogsViewController.h │ │ ├── BRLogsViewController.m │ │ ├── BRLogsWindowController.h │ │ ├── BRLogsWindowController.m │ │ ├── BRLogsWindowPresenter.h │ │ └── BRLogsWindowPresenter.m ├── Dependencies │ ├── NSPopover+MISSINGBackgroundView.h │ └── NSPopover+MISSINGBackgroundView.m ├── Environment │ ├── BRAnalytics.h │ ├── BRAnalytics.m │ ├── BRAutorun.h │ ├── BRAutorun.m │ ├── BREnvironment.h │ ├── BREnvironment.m │ ├── BRNotificationDispatcher.h │ └── BRNotificationDispatcher.m ├── Info.plist ├── Networking │ ├── BRActionDispatcher.h │ ├── BRActionDispatcher.m │ ├── BRBitriseAPI.h │ ├── BRBitriseAPI.m │ ├── BRObserver.h │ ├── BRObserver.m │ ├── Commands │ │ ├── Account │ │ │ ├── BRGetAccountCommand.h │ │ │ ├── BRGetAccountCommand.m │ │ │ ├── BRRemoveAccountCommand.h │ │ │ └── BRRemoveAccountCommand.m │ │ ├── Actions │ │ │ ├── BRAbortCommand.h │ │ │ ├── BRAbortCommand.m │ │ │ ├── BRCommandFactory.h │ │ │ ├── BRCommandFactory.m │ │ │ ├── BRDownloadLogsCommand.h │ │ │ ├── BRDownloadLogsCommand.m │ │ │ ├── BROpenBuildCommand.h │ │ │ ├── BROpenBuildCommand.m │ │ │ ├── BRRebuildCommand.h │ │ │ └── BRRebuildCommand.m │ │ ├── BRAddBuildTokenCommand.h │ │ ├── BRAddBuildTokenCommand.m │ │ ├── BRCommand.h │ │ ├── BRCommand.m │ │ ├── BRSyncCommand.h │ │ └── BRSyncCommand.m │ ├── LogObserver │ │ ├── ASLogLoadingOperation.h │ │ ├── ASLogLoadingOperation.m │ │ ├── ASLogObservingOperation.h │ │ ├── ASLogObservingOperation.m │ │ ├── ASLogOperation.h │ │ ├── BRLogObserver.h │ │ └── BRLogObserver.m │ └── Requests │ │ ├── BRAPIRequest.h │ │ ├── BRAPIRequest.m │ │ ├── BRAbortRequest.h │ │ ├── BRAbortRequest.m │ │ ├── BRAccountRequest.h │ │ ├── BRAccountRequest.m │ │ ├── BRAppsRequest.h │ │ ├── BRAppsRequest.m │ │ ├── BRBuildsRequest.h │ │ ├── BRBuildsRequest.m │ │ ├── BRLogsRequest.h │ │ ├── BRLogsRequest.m │ │ ├── BRRebuildRequest.h │ │ └── BRRebuildRequest.m ├── Resources │ ├── Assets.xcassets │ │ ├── AddButtonImage.imageset │ │ │ ├── AddButtonImage.png │ │ │ ├── AddButtonImage@2x.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-1024.png │ │ │ ├── Icon-128.png │ │ │ ├── Icon-16.png │ │ │ ├── Icon-256.png │ │ │ ├── Icon-257.png │ │ │ ├── Icon-32.png │ │ │ ├── Icon-33.png │ │ │ ├── Icon-512.png │ │ │ ├── Icon-513.png │ │ │ └── Icon-64.png │ │ ├── Build │ │ │ ├── Contents.json │ │ │ ├── Icons │ │ │ │ ├── Contents.json │ │ │ │ ├── calendar.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── date icon.png │ │ │ │ │ └── date icon@2x.png │ │ │ │ ├── clock.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── stopwatch icon.png │ │ │ │ │ └── stopwatch icon@2x.png │ │ │ │ ├── flat-list.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Fill 198.png │ │ │ │ │ ├── Fill 198@2x.png │ │ │ │ │ └── Fill 198@3x.png │ │ │ │ ├── git-branch.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── branch icon.png │ │ │ │ │ └── branch icon@2x.png │ │ │ │ ├── list.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── workflow icon.png │ │ │ │ │ └── workflow icon@2x.png │ │ │ │ ├── message-square.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── messages icon.png │ │ │ │ │ └── messages icon@2x.png │ │ │ │ ├── settings.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── settings.png │ │ │ │ │ ├── settings@2x.png │ │ │ │ │ └── settings@3x.png │ │ │ │ └── stack-list.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Fill 120.png │ │ │ │ │ ├── Fill 120@2x.png │ │ │ │ │ └── Fill 120@3x.png │ │ │ ├── NotificationIcons │ │ │ │ ├── Contents.json │ │ │ │ ├── abort_notification.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── abort notification.png │ │ │ │ │ └── abort notification@2x.png │ │ │ │ ├── failed_notification.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── failed notification.png │ │ │ │ │ └── failed notification@2x.png │ │ │ │ ├── hold_notification.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── hold notification.png │ │ │ │ │ └── hold notification@2x.png │ │ │ │ ├── progress_notification.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── progress notification.png │ │ │ │ │ └── progress notification@2x.png │ │ │ │ ├── success_notification.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── success notification.png │ │ │ │ │ └── success notification@2x.png │ │ │ │ └── unknown_notification.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── unknown notification.png │ │ │ │ │ └── unknown notification@2x.png │ │ │ └── Statuses │ │ │ │ ├── 0-degree-status-icon.imageset │ │ │ │ ├── 0-degree-status-icon.png │ │ │ │ ├── 0-degree-status-icon@2x.png │ │ │ │ └── Contents.json │ │ │ │ ├── 13-degree-status-icon.imageset │ │ │ │ ├── 13-degree-status-icon.png │ │ │ │ ├── 13-degree-status-icon@2x.png │ │ │ │ └── Contents.json │ │ │ │ ├── 45-degree-status-icon.imageset │ │ │ │ ├── 45-degree-status-icon.png │ │ │ │ ├── 45-degree-status-icon@2x.png │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── abort-status.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── abort-status-1.png │ │ │ │ ├── abort-status-2.png │ │ │ │ └── abort-status.png │ │ │ │ ├── failed-status.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── failed-status-1.png │ │ │ │ ├── failed-status-2.png │ │ │ │ └── failed-status.png │ │ │ │ ├── failure-status-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── failure-status-icon.png │ │ │ │ └── failure-status-icon@2x.png │ │ │ │ ├── hold-status.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── hold-status-1.png │ │ │ │ ├── hold-status-2.png │ │ │ │ └── hold-status.png │ │ │ │ ├── progress-status.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── progress-status-1.png │ │ │ │ ├── progress-status-2.png │ │ │ │ └── progress-status.png │ │ │ │ ├── success-status-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── success-status-icon.png │ │ │ │ └── success-status-icon@2x.png │ │ │ │ └── success-status.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── success-status-1.png │ │ │ │ ├── success-status-2.png │ │ │ │ └── success-status.png │ │ ├── Colors │ │ │ ├── Build │ │ │ │ ├── BuildAbortedColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── BuildFailedColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── BuildHoldColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── BuildProgressColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── BuildSuccessColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── BuildWaitColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Generic │ │ │ │ ├── BackgroundColor.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── BuildTintColor.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── CellBackgroundColor.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── GreenColor.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── PrimaryTextColor.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── SecondaryTextColor.colorset │ │ │ │ └── Contents.json │ │ │ │ └── TextColor.colorset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── EmptyIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 10.png │ │ │ └── Group 10@2x.png │ │ ├── Icon.imageset │ │ │ ├── Contents.json │ │ │ ├── bit-bot-icon.png │ │ │ └── bit-bot-icon@2x.png │ │ ├── Logo.imageset │ │ │ ├── BitBot Logo.png │ │ │ ├── BitBot Logo@2x.png │ │ │ └── Contents.json │ │ ├── Scheme.imageset │ │ │ ├── Contents.json │ │ │ ├── image 11.png │ │ │ └── image 11@2x.png │ │ ├── Settings-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Group.png │ │ │ ├── Group@2x.png │ │ │ └── Group@3x.png │ │ ├── ShadowAction.imageset │ │ │ ├── Contents.json │ │ │ ├── ShadowAction.png │ │ │ └── ShadowAction@2x.png │ │ ├── ShadowBottom.imageset │ │ │ ├── Contents.json │ │ │ ├── ShadowBottom.png │ │ │ └── ShadowBottom@2x.png │ │ ├── ShadowTop.imageset │ │ │ ├── Contents.json │ │ │ ├── ShadowTop.png │ │ │ └── ShadowTop@2x.png │ │ ├── StatusIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── StatusIcon@22.png │ │ │ ├── StatusIcon@44.png │ │ │ └── StatusIcon@66.png │ │ ├── TILTED RECTANGLE.imageset │ │ │ ├── Contents.json │ │ │ └── TILTED RECTANGLE.png │ │ ├── Triple-dots-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Triple-dots-icon.png │ │ │ └── Triple-dots-icon@2x.png │ │ ├── TripleDotsShadowed.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 45.png │ │ │ └── Group 45@2x.png │ │ ├── abort notification.imageset │ │ │ ├── Contents.json │ │ │ ├── abort notification.png │ │ │ └── abort notification@2x.png │ │ ├── avatar-default.imageset │ │ │ ├── Contents.json │ │ │ ├── avatar-default-1.png │ │ │ ├── avatar-default-2.png │ │ │ └── avatar-default.png │ │ ├── bitrise-bot-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── bit-bot-statusbar-icon.png │ │ │ └── bit-bot-statusbar-icon@2x.png │ │ ├── dots.imageset │ │ │ ├── Contents.json │ │ │ ├── dots.png │ │ │ └── dots@2x.png │ │ ├── failed notification.imageset │ │ │ ├── Contents.json │ │ │ ├── failed notification.png │ │ │ └── failed notification@2x.png │ │ ├── filter-menu-circle.imageset │ │ │ ├── Contents.json │ │ │ ├── filter-menu-circle 1.png │ │ │ ├── filter-menu-circle 1@2x.png │ │ │ └── filter-menu-circle 1@3x.png │ │ ├── hold notification.imageset │ │ │ ├── Contents.json │ │ │ ├── hold notification.png │ │ │ └── hold notification@2x.png │ │ ├── progress notification.imageset │ │ │ ├── Contents.json │ │ │ ├── progress notification.png │ │ │ └── progress notification@2x.png │ │ ├── success notification.imageset │ │ │ ├── Contents.json │ │ │ ├── success notification.png │ │ │ └── success notification@2x.png │ │ └── unknown notification.imageset │ │ │ ├── Contents.json │ │ │ ├── unknown notification.png │ │ │ └── unknown notification@2x.png │ └── Fonts │ │ ├── Jura │ │ ├── Jura-Bold.ttf │ │ ├── Jura-Medium.ttf │ │ └── Jura-VariableFont_wght.ttf │ │ ├── Mono │ │ ├── JetBrainsMono-Bold-Italic.ttf │ │ ├── JetBrainsMono-Bold.ttf │ │ ├── JetBrainsMono-ExtraBold-Italic.ttf │ │ ├── JetBrainsMono-ExtraBold.ttf │ │ ├── JetBrainsMono-Italic.ttf │ │ ├── JetBrainsMono-Medium-Italic.ttf │ │ ├── JetBrainsMono-Medium.ttf │ │ └── JetBrainsMono-Regular.ttf │ │ └── Proxima │ │ ├── Proxima Nova Alt Bold.otf │ │ ├── Proxima Nova Alt Light.otf │ │ ├── Proxima Nova Alt Thin.otf │ │ ├── Proxima Nova Black.otf │ │ ├── Proxima Nova Bold.otf │ │ ├── Proxima Nova Extrabold.otf │ │ ├── Proxima Nova Thin.otf │ │ └── ProximaNova-Regular.otf ├── Storage │ ├── BRAccountsObserver.h │ ├── BRAccountsObserver.m │ ├── BRLogStorage.h │ ├── BRLogStorage.m │ ├── BRLogsParser.h │ ├── BRLogsParser.m │ ├── BRStorage.h │ ├── BRStorage.m │ ├── Data Sources │ │ ├── BRAccountsDataSource.h │ │ ├── BRAccountsDataSource.m │ │ ├── BRAppsDataSource.h │ │ ├── BRAppsDataSource.m │ │ ├── BRBuildPredicate.h │ │ ├── BRBuildPredicate.m │ │ ├── BRLogsDataSource.h │ │ └── BRLogsDataSource.m │ └── Models │ │ ├── BRAccountInfo.h │ │ ├── BRAccountInfo.m │ │ ├── BRAppInfo.h │ │ ├── BRAppInfo.m │ │ ├── BRBuildInfo.h │ │ ├── BRBuildInfo.m │ │ ├── BRLogInfo.h │ │ ├── BRLogInfo.m │ │ ├── Mappings │ │ ├── BRApp+Mapping.h │ │ ├── BRApp+Mapping.m │ │ ├── BRBuild+Mapping.h │ │ ├── BRBuild+Mapping.m │ │ ├── BRBuildLog+Mapping.h │ │ ├── BRBuildLog+Mapping.m │ │ ├── BTRAccount+Mapping.h │ │ └── BTRAccount+Mapping.m │ │ └── bitrise.xcdatamodeld │ │ ├── .xccurrentversion │ │ ├── bitrise.xcdatamodel │ │ └── contents │ │ └── bitrise_1.0.2.xcdatamodel │ │ └── contents ├── Sync │ ├── BRAddAccountOperation.h │ ├── BRAddAccountOperation.m │ ├── BRSyncDiff.h │ ├── BRSyncDiff.m │ ├── BRSyncEngine.h │ ├── BRSyncEngine.m │ ├── BRSyncOperation.h │ ├── BRSyncOperation.m │ ├── BRSyncResult.h │ └── BRSyncResult.m ├── Tools │ ├── BRLogger.h │ ├── BRLogger.m │ ├── BRMacro.h │ ├── Collection Extensions │ │ ├── NSArray+FRP.h │ │ ├── NSArray+FRP.m │ │ ├── NSDictionary+FRP.h │ │ ├── NSDictionary+FRP.m │ │ ├── NSHashTable+FRP.h │ │ ├── NSHashTable+FRP.m │ │ ├── NSSet+FRP.h │ │ └── NSSet+FRP.m │ └── Queue │ │ ├── ASQueue.h │ │ ├── ASQueue.m │ │ ├── BROperation.h │ │ └── BROperation.m ├── View │ ├── BRBuildStateInfo.h │ ├── BRBuildStateInfo.m │ ├── BRCellBuilder.h │ ├── BRCellBuilder.m │ ├── BRPlaceholderViews.h │ ├── BRPlaceholderViews.m │ ├── BRProgressObserver.h │ ├── BRProgressObserver.m │ ├── BRSegue.h │ ├── BRStyleSheet.h │ ├── BRStyleSheet.m │ ├── Cells │ │ ├── BRAccountCellView.h │ │ ├── BRAccountCellView.m │ │ ├── BRAppCellView.h │ │ ├── BRAppCellView.m │ │ ├── BRBuildCellView.h │ │ ├── BRBuildCellView.m │ │ ├── BRLogLineView.h │ │ ├── BRLogLineView.m │ │ ├── BRLogStepView.h │ │ ├── BRLogStepView.m │ │ ├── BRManagingAppCellView.h │ │ └── BRManagingAppCellView.m │ ├── Custom │ │ ├── BRAboutTextView.h │ │ ├── BRAboutTextView.m │ │ ├── BRDisableableScrollView.h │ │ ├── BRDisableableScrollView.m │ │ ├── BREmptyView.h │ │ ├── BREmptyView.m │ │ ├── BRLogScroller.h │ │ ├── BRLogScroller.m │ │ ├── BRLogStatusView.h │ │ ├── BRLogStatusView.m │ │ ├── BRScroller.h │ │ ├── BRScroller.m │ │ └── Dots view │ │ │ ├── BRDotsView.h │ │ │ └── BRDotsView.m │ ├── Menus │ │ ├── BRAccountsMenuController.h │ │ ├── BRAccountsMenuController.m │ │ ├── BRBuildMenuController.h │ │ ├── BRBuildMenuController.m │ │ ├── BRSettingsMenuController.h │ │ ├── BRSettingsMenuController.m │ │ └── Filter │ │ │ ├── BRFilterCondition.h │ │ │ ├── BRFilterCondition.m │ │ │ ├── BRFilterItemProvider.h │ │ │ ├── BRFilterItemProvider.m │ │ │ ├── BRFiltersMenuController.h │ │ │ └── BRFiltersMenuController.m │ ├── Storyboards │ │ ├── About.storyboard │ │ ├── Accounts.storyboard │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ └── Logs.storyboard │ └── Tools │ │ ├── AMR_ANSIEscapeHelper.h │ │ ├── AMR_ANSIEscapeHelper.m │ │ ├── BRLogPresenter.h │ │ └── BRLogPresenter.m └── main.m ├── BitriseATV ├── Application │ ├── AppState.swift │ └── BitriseATVApp.swift ├── BitriseATV.entitlements ├── Common │ ├── Components │ │ ├── AccountsState.swift │ │ ├── BuildsState.swift │ │ ├── Graph │ │ │ ├── AccountsNode.swift │ │ │ ├── BuildsNode.swift │ │ │ ├── Graph.swift │ │ │ └── SettingsNode.swift │ │ └── SettingsState.swift │ ├── Dependency Injection │ │ └── DependencyContainer.swift │ ├── Extension │ │ ├── BRAccountsObserver+Dispatch.swift │ │ ├── Font+Convenience.swift │ │ ├── String+Localization.swift │ │ ├── UIColor │ │ │ ├── UIColor+Convenience.swift │ │ │ └── UIColor+Focus.swift │ │ └── UIFont+Convenience.swift │ ├── Redux │ │ ├── Action.swift │ │ ├── Connector.swift │ │ ├── EnvironmentStore.swift │ │ ├── Observer.swift │ │ ├── Store.swift │ │ └── StoreProvider.swift │ ├── Style │ │ ├── Color+Extension.swift │ │ ├── Image+Extension.swift │ │ └── ProximaFontModifier.swift │ ├── Utility │ │ ├── AccountCommandsDispatcher.swift │ │ ├── AppMetadataProvider.swift │ │ ├── AsyncImage.swift │ │ ├── BuildCommandsDispatcher.swift │ │ ├── CommandsDispatcher.swift │ │ ├── ObservableTimer.swift │ │ ├── RemoteStorageChangesObserver.swift │ │ └── SettingsProvider.swift │ └── View │ │ └── FocusSupportingTextField.swift ├── Features │ ├── About │ │ ├── AboutConnector.swift │ │ └── AboutView.swift │ ├── Accounts │ │ ├── Account │ │ │ ├── AccountConnector.swift │ │ │ └── AccountView.swift │ │ ├── AccountViewModel.swift │ │ ├── AccountsConnector.swift │ │ ├── AccountsView.swift │ │ └── DataProvider.swift │ ├── Add Account │ │ ├── AddAccountConnector.swift │ │ └── AddAccountView.swift │ ├── Apps │ │ ├── App │ │ │ ├── AppConnector.swift │ │ │ └── AppView.swift │ │ ├── AppsConnector.swift │ │ └── AppsView.swift │ ├── Builds │ │ ├── Build │ │ │ ├── BuildConnector.swift │ │ │ ├── BuildView.swift │ │ │ └── ImageText.swift │ │ ├── BuildsConnector.swift │ │ ├── BuildsView.swift │ │ └── EmptyStateView.swift │ ├── RootView │ │ ├── RootConnector.swift │ │ └── RootView.swift │ └── Setting │ │ ├── SettingsConnector.swift │ │ └── SettingsView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Resources │ └── Assets.xcassets │ │ ├── Brand Assets.brandassets │ │ ├── App Icon - App Store.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Layer 0.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Layer 2.png │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Layer 1.png │ │ │ │ └── Contents.json │ │ ├── App Icon.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app-back.png │ │ │ │ │ └── app-back@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Layer 2-1.png │ │ │ │ │ └── Layer 2@2x-1.png │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer 1-1.png │ │ │ │ └── Layer 1@2x-1.png │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ ├── Contents.json │ │ │ ├── TopShelf-Static Image-Wide.jpg │ │ │ └── TopShelf-Static Image-Wide@2x.jpg │ │ └── Top Shelf Image.imageset │ │ │ ├── AppleTV-TopShelf-1920x720.jpg │ │ │ ├── AppleTV-TopShelf-1920x720@2x.jpg │ │ │ └── Contents.json │ │ └── Contents.json └── Supporting Files │ └── Info.plist ├── BitriseTests ├── Info.plist ├── Storage │ ├── BRAccountsObserverTests.m │ ├── BRLogsParserTests.m │ ├── BRStorageTests.m │ └── Data Sources │ │ ├── BRAccountsDataSourceTests.m │ │ ├── BRAppsDataSourceTests.m │ │ └── BRBuildPredicateTests.m ├── Stubs │ └── Logs │ │ ├── LogResponse_10chunks_finished.json │ │ └── LogResponse_10chunks_running.json └── TestTools │ ├── BRLogStubBuilder.h │ ├── BRLogStubBuilder.m │ ├── BRMockBuilder.h │ └── BRMockBuilder.m ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── EasyMapping │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── EasyMapping │ │ ├── EKCoreDataImporter.h │ │ ├── EKCoreDataImporter.m │ │ ├── EKManagedObjectMapper.h │ │ ├── EKManagedObjectMapper.m │ │ ├── EKManagedObjectMapping.h │ │ ├── EKManagedObjectMapping.m │ │ ├── EKManagedObjectModel.h │ │ ├── EKManagedObjectModel.m │ │ ├── EKMapper.h │ │ ├── EKMapper.m │ │ ├── EKMappingBlocks.h │ │ ├── EKMappingBlocks.m │ │ ├── EKMappingProtocol.h │ │ ├── EKObjectMapping.h │ │ ├── EKObjectMapping.m │ │ ├── EKObjectModel.h │ │ ├── EKObjectModel.m │ │ ├── EKPropertyHelper.h │ │ ├── EKPropertyHelper.m │ │ ├── EKPropertyMapping.h │ │ ├── EKPropertyMapping.m │ │ ├── EKRelationshipMapping.h │ │ ├── EKRelationshipMapping.m │ │ ├── EKSerializer.h │ │ ├── EKSerializer.m │ │ ├── EasyMapping.h │ │ ├── NSArray+FlattenArray.h │ │ ├── NSArray+FlattenArray.m │ │ └── NSDateFormatter+EasyMappingAdditions.h ├── Expecta │ ├── Expecta │ │ ├── EXPBlockDefinedMatcher.h │ │ ├── EXPBlockDefinedMatcher.m │ │ ├── EXPDefines.h │ │ ├── EXPDoubleTuple.h │ │ ├── EXPDoubleTuple.m │ │ ├── EXPExpect.h │ │ ├── EXPExpect.m │ │ ├── EXPFloatTuple.h │ │ ├── EXPFloatTuple.m │ │ ├── EXPMatcher.h │ │ ├── EXPUnsupportedObject.h │ │ ├── EXPUnsupportedObject.m │ │ ├── Expecta.h │ │ ├── ExpectaObject.h │ │ ├── ExpectaObject.m │ │ ├── ExpectaSupport.h │ │ ├── ExpectaSupport.m │ │ ├── Matchers │ │ │ ├── EXPMatcherHelpers.h │ │ │ ├── EXPMatcherHelpers.m │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ ├── EXPMatchers+beCloseTo.m │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ ├── EXPMatchers+beFalsy.m │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ ├── EXPMatchers+beGreaterThan.m │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.m │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ ├── EXPMatchers+beIdenticalTo.m │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ ├── EXPMatchers+beInTheRangeOf.m │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ ├── EXPMatchers+beInstanceOf.m │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ ├── EXPMatchers+beKindOf.m │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ ├── EXPMatchers+beLessThan.m │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.m │ │ │ ├── EXPMatchers+beNil.h │ │ │ ├── EXPMatchers+beNil.m │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ ├── EXPMatchers+beSubclassOf.m │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ ├── EXPMatchers+beSupersetOf.m │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ ├── EXPMatchers+beTruthy.m │ │ │ ├── EXPMatchers+beginWith.h │ │ │ ├── EXPMatchers+beginWith.m │ │ │ ├── EXPMatchers+conformTo.h │ │ │ ├── EXPMatchers+conformTo.m │ │ │ ├── EXPMatchers+contain.h │ │ │ ├── EXPMatchers+contain.m │ │ │ ├── EXPMatchers+endWith.h │ │ │ ├── EXPMatchers+endWith.m │ │ │ ├── EXPMatchers+equal.h │ │ │ ├── EXPMatchers+equal.m │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ ├── EXPMatchers+haveCountOf.m │ │ │ ├── EXPMatchers+match.h │ │ │ ├── EXPMatchers+match.m │ │ │ ├── EXPMatchers+postNotification.h │ │ │ ├── EXPMatchers+postNotification.m │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raise.m │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+raiseWithReason.m │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers+respondTo.m │ │ │ └── EXPMatchers.h │ │ ├── NSObject+Expecta.h │ │ ├── NSValue+Expecta.h │ │ └── NSValue+Expecta.m │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── EasyMapping │ │ │ ├── EKCoreDataImporter.h │ │ │ ├── EKManagedObjectMapper.h │ │ │ ├── EKManagedObjectMapping.h │ │ │ ├── EKManagedObjectModel.h │ │ │ ├── EKMapper.h │ │ │ ├── EKMappingBlocks.h │ │ │ ├── EKMappingProtocol.h │ │ │ ├── EKObjectMapping.h │ │ │ ├── EKObjectModel.h │ │ │ ├── EKPropertyHelper.h │ │ │ ├── EKPropertyMapping.h │ │ │ ├── EKRelationshipMapping.h │ │ │ ├── EKSerializer.h │ │ │ ├── EasyMapping.h │ │ │ ├── NSArray+FlattenArray.h │ │ │ └── NSDateFormatter+EasyMappingAdditions.h │ │ ├── Expecta │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPExpect.h │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPMatcherHelpers.h │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ ├── EXPMatchers+beNil.h │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ ├── EXPMatchers+beginWith.h │ │ │ ├── EXPMatchers+conformTo.h │ │ │ ├── EXPMatchers+contain.h │ │ │ ├── EXPMatchers+endWith.h │ │ │ ├── EXPMatchers+equal.h │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ ├── EXPMatchers+match.h │ │ │ ├── EXPMatchers+postNotification.h │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── Expecta.h │ │ │ ├── ExpectaObject.h │ │ │ ├── ExpectaSupport.h │ │ │ ├── NSObject+Expecta.h │ │ │ └── NSValue+Expecta.h │ │ ├── Kingfisher │ │ │ └── Kingfisher.h │ │ ├── Mixpanel │ │ │ ├── AutomaticEvents.h │ │ │ ├── MPDB.h │ │ │ ├── MPFoundation.h │ │ │ ├── MPJSONHander.h │ │ │ ├── MPLogger.h │ │ │ ├── MPNetwork.h │ │ │ ├── MPNetworkPrivate.h │ │ │ ├── Mixpanel.h │ │ │ ├── MixpanelExceptionHandler.h │ │ │ ├── MixpanelGroup.h │ │ │ ├── MixpanelGroupPrivate.h │ │ │ ├── MixpanelIdentity.h │ │ │ ├── MixpanelPeople.h │ │ │ ├── MixpanelPeoplePrivate.h │ │ │ ├── MixpanelPersistence.h │ │ │ ├── MixpanelPrivate.h │ │ │ ├── MixpanelType.h │ │ │ ├── MixpanelWatchProperties.h │ │ │ └── SessionMetadata.h │ │ ├── OCMock │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSMethodSignature+OCMAdditions.h │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ ├── NSObject+OCMAdditions.h │ │ │ ├── NSValue+OCMAdditions.h │ │ │ ├── OCClassMockObject.h │ │ │ ├── OCMArg.h │ │ │ ├── OCMArgAction.h │ │ │ ├── OCMBlockArgCaller.h │ │ │ ├── OCMBlockCaller.h │ │ │ ├── OCMBoxedReturnValueProvider.h │ │ │ ├── OCMConstraint.h │ │ │ ├── OCMExceptionReturnValueProvider.h │ │ │ ├── OCMExpectationRecorder.h │ │ │ ├── OCMFunctions.h │ │ │ ├── OCMFunctionsPrivate.h │ │ │ ├── OCMIndirectReturnValueProvider.h │ │ │ ├── OCMInvocationExpectation.h │ │ │ ├── OCMInvocationMatcher.h │ │ │ ├── OCMInvocationStub.h │ │ │ ├── OCMLocation.h │ │ │ ├── OCMMacroState.h │ │ │ ├── OCMNotificationPoster.h │ │ │ ├── OCMObserverRecorder.h │ │ │ ├── OCMPassByRefSetter.h │ │ │ ├── OCMRealObjectForwarder.h │ │ │ ├── OCMRecorder.h │ │ │ ├── OCMReturnValueProvider.h │ │ │ ├── OCMStubRecorder.h │ │ │ ├── OCMVerifier.h │ │ │ ├── OCMock.h │ │ │ ├── OCMockObject.h │ │ │ ├── OCObserverMockObject.h │ │ │ ├── OCPartialMockObject.h │ │ │ └── OCProtocolMockObject.h │ │ ├── SDWebImage │ │ │ ├── NSBezierPath+RoundedCorners.h │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSImage+Compatibility.h │ │ │ ├── SDAnimatedImage.h │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDAnimatedImageView+WebCache.h │ │ │ ├── SDAnimatedImageView.h │ │ │ ├── SDAsyncBlockOperation.h │ │ │ ├── SDDiskCache.h │ │ │ ├── SDImageAPNGCoder.h │ │ │ ├── SDImageAPNGCoderInternal.h │ │ │ ├── SDImageAssetManager.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDImageCacheDefine.h │ │ │ ├── SDImageCachesManager.h │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ ├── SDImageCoder.h │ │ │ ├── SDImageCoderHelper.h │ │ │ ├── SDImageCodersManager.h │ │ │ ├── SDImageFrame.h │ │ │ ├── SDImageGIFCoder.h │ │ │ ├── SDImageGIFCoderInternal.h │ │ │ ├── SDImageGraphics.h │ │ │ ├── SDImageIOCoder.h │ │ │ ├── SDImageLoader.h │ │ │ ├── SDImageLoadersManager.h │ │ │ ├── SDImageTransformer.h │ │ │ ├── SDInternalMacros.h │ │ │ ├── SDMemoryCache.h │ │ │ ├── SDWeakProxy.h │ │ │ ├── SDWebImage.h │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDefine.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ ├── SDWebImageError.h │ │ │ ├── SDWebImageIndicator.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImageTransition.h │ │ │ ├── SDmetamacros.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIColor+HexString.h │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ ├── UIImage+Metadata.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+Transform.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ │ └── Sentry │ │ │ ├── Container+SentryDeepSearch.h │ │ │ ├── NSArray+SentrySanitize.h │ │ │ ├── NSData+Sentry.h │ │ │ ├── NSData+SentryCompression.h │ │ │ ├── NSDate+SentryExtras.h │ │ │ ├── NSDictionary+SentrySanitize.h │ │ │ ├── NSError+SentrySimpleConstructor.h │ │ │ ├── PrivateSentrySDKOnly.h │ │ │ ├── Sentry.h │ │ │ ├── SentryANRTracker.h │ │ │ ├── SentryANRTrackingIntegration.h │ │ │ ├── SentryAppStartMeasurement.h │ │ │ ├── SentryAppStartTracker.h │ │ │ ├── SentryAppStartTrackingIntegration.h │ │ │ ├── SentryAppState.h │ │ │ ├── SentryAppStateManager.h │ │ │ ├── SentryAsyncSafeLogging.h │ │ │ ├── SentryAsynchronousOperation.h │ │ │ ├── SentryAttachment.h │ │ │ ├── SentryAutoBreadcrumbTrackingIntegration.h │ │ │ ├── SentryAutoSessionTrackingIntegration.h │ │ │ ├── SentryBacktrace.hpp │ │ │ ├── SentryBreadcrumb.h │ │ │ ├── SentryBreadcrumbTracker.h │ │ │ ├── SentryByteCountFormatter.h │ │ │ ├── SentryCPU.h │ │ │ ├── SentryClient+Private.h │ │ │ ├── SentryClient.h │ │ │ ├── SentryCompiler.h │ │ │ ├── SentryConcurrentRateLimitsDictionary.h │ │ │ ├── SentryCoreDataSwizzling.h │ │ │ ├── SentryCoreDataTracker.h │ │ │ ├── SentryCoreDataTrackingIntegration.h │ │ │ ├── SentryCrash.h │ │ │ ├── SentryCrashBinaryImageProvider.h │ │ │ ├── SentryCrashC.h │ │ │ ├── SentryCrashCPU.h │ │ │ ├── SentryCrashCPU_Apple.h │ │ │ ├── SentryCrashCString.h │ │ │ ├── SentryCrashCachedData.h │ │ │ ├── SentryCrashDate.h │ │ │ ├── SentryCrashDebug.h │ │ │ ├── SentryCrashDefaultBinaryImageProvider.h │ │ │ ├── SentryCrashDefaultMachineContextWrapper.h │ │ │ ├── SentryCrashDoctor.h │ │ │ ├── SentryCrashDynamicLinker.h │ │ │ ├── SentryCrashExceptionApplication.h │ │ │ ├── SentryCrashFileUtils.h │ │ │ ├── SentryCrashID.h │ │ │ ├── SentryCrashInstallation+Private.h │ │ │ ├── SentryCrashInstallation.h │ │ │ ├── SentryCrashInstallationReporter.h │ │ │ ├── SentryCrashIntegration.h │ │ │ ├── SentryCrashIsAppImage.h │ │ │ ├── SentryCrashJSONCodec.h │ │ │ ├── SentryCrashJSONCodecObjC.h │ │ │ ├── SentryCrashLogger.h │ │ │ ├── SentryCrashMach.h │ │ │ ├── SentryCrashMachineContext.h │ │ │ ├── SentryCrashMachineContextWrapper.h │ │ │ ├── SentryCrashMachineContext_Apple.h │ │ │ ├── SentryCrashMemory.h │ │ │ ├── SentryCrashMonitor.h │ │ │ ├── SentryCrashMonitorContext.h │ │ │ ├── SentryCrashMonitorType.h │ │ │ ├── SentryCrashMonitor_AppState.h │ │ │ ├── SentryCrashMonitor_CPPException.h │ │ │ ├── SentryCrashMonitor_Deadlock.h │ │ │ ├── SentryCrashMonitor_MachException.h │ │ │ ├── SentryCrashMonitor_NSException.h │ │ │ ├── SentryCrashMonitor_Signal.h │ │ │ ├── SentryCrashMonitor_System.h │ │ │ ├── SentryCrashMonitor_User.h │ │ │ ├── SentryCrashMonitor_Zombie.h │ │ │ ├── SentryCrashObjC.h │ │ │ ├── SentryCrashObjCApple.h │ │ │ ├── SentryCrashPlatformSpecificDefines.h │ │ │ ├── SentryCrashReport.h │ │ │ ├── SentryCrashReportConverter.h │ │ │ ├── SentryCrashReportFields.h │ │ │ ├── SentryCrashReportFilter.h │ │ │ ├── SentryCrashReportFilterBasic.h │ │ │ ├── SentryCrashReportFixer.h │ │ │ ├── SentryCrashReportSink.h │ │ │ ├── SentryCrashReportStore.h │ │ │ ├── SentryCrashReportVersion.h │ │ │ ├── SentryCrashReportWriter.h │ │ │ ├── SentryCrashScopeObserver.h │ │ │ ├── SentryCrashSignalInfo.h │ │ │ ├── SentryCrashStackCursor.h │ │ │ ├── SentryCrashStackCursor_Backtrace.h │ │ │ ├── SentryCrashStackCursor_MachineContext.h │ │ │ ├── SentryCrashStackCursor_SelfThread.h │ │ │ ├── SentryCrashStackEntryMapper.h │ │ │ ├── SentryCrashString.h │ │ │ ├── SentryCrashSymbolicator.h │ │ │ ├── SentryCrashSysCtl.h │ │ │ ├── SentryCrashSystemCapabilities.h │ │ │ ├── SentryCrashThread.h │ │ │ ├── SentryCrashUUIDConversion.h │ │ │ ├── SentryCrashVarArgs.h │ │ │ ├── SentryCrashWrapper.h │ │ │ ├── SentryCurrentDate.h │ │ │ ├── SentryCurrentDateProvider.h │ │ │ ├── SentryDataCategory.h │ │ │ ├── SentryDataCategoryMapper.h │ │ │ ├── SentryDateUtil.h │ │ │ ├── SentryDebugImageProvider.h │ │ │ ├── SentryDebugMeta.h │ │ │ ├── SentryDefaultCurrentDateProvider.h │ │ │ ├── SentryDefaultObjCRuntimeWrapper.h │ │ │ ├── SentryDefaultRateLimits.h │ │ │ ├── SentryDefines.h │ │ │ ├── SentryDependencyContainer.h │ │ │ ├── SentryDispatchQueueWrapper.h │ │ │ ├── SentryDisplayLinkWrapper.h │ │ │ ├── SentryDsn.h │ │ │ ├── SentryEnvelope.h │ │ │ ├── SentryEnvelopeItemType.h │ │ │ ├── SentryEnvelopeRateLimit.h │ │ │ ├── SentryError.h │ │ │ ├── SentryEvent.h │ │ │ ├── SentryException.h │ │ │ ├── SentryFileContents.h │ │ │ ├── SentryFileIOTrackingIntegration.h │ │ │ ├── SentryFileManager.h │ │ │ ├── SentryFrame.h │ │ │ ├── SentryFrameRemover.h │ │ │ ├── SentryFramesTracker.h │ │ │ ├── SentryFramesTrackingIntegration.h │ │ │ ├── SentryGlobalEventProcessor.h │ │ │ ├── SentryHexAddressFormatter.h │ │ │ ├── SentryHook.h │ │ │ ├── SentryHttpDateParser.h │ │ │ ├── SentryHttpTransport.h │ │ │ ├── SentryHub+Private.h │ │ │ ├── SentryHub.h │ │ │ ├── SentryId.h │ │ │ ├── SentryInAppLogic.h │ │ │ ├── SentryInstallation.h │ │ │ ├── SentryIntegrationProtocol.h │ │ │ ├── SentryInternalNotificationNames.h │ │ │ ├── SentryLevelMapper.h │ │ │ ├── SentryLog.h │ │ │ ├── SentryLogOutput.h │ │ │ ├── SentryMachLogging.hpp │ │ │ ├── SentryMechanism.h │ │ │ ├── SentryMechanismMeta.h │ │ │ ├── SentryMessage.h │ │ │ ├── SentryMeta.h │ │ │ ├── SentryMigrateSessionInit.h │ │ │ ├── SentryNSDataSwizzling.h │ │ │ ├── SentryNSDataTracker.h │ │ │ ├── SentryNSError.h │ │ │ ├── SentryNSURLRequest.h │ │ │ ├── SentryNSURLSessionTaskSearch.h │ │ │ ├── SentryNetworkTracker.h │ │ │ ├── SentryNetworkTrackingIntegration.h │ │ │ ├── SentryNoOpSpan.h │ │ │ ├── SentryObjCRuntimeWrapper.h │ │ │ ├── SentryOptions+Private.h │ │ │ ├── SentryOptions.h │ │ │ ├── SentryOutOfMemoryLogic.h │ │ │ ├── SentryOutOfMemoryTracker.h │ │ │ ├── SentryOutOfMemoryTrackingIntegration.h │ │ │ ├── SentryPerformanceTracker.h │ │ │ ├── SentryPerformanceTrackingIntegration.h │ │ │ ├── SentryProfiler.h │ │ │ ├── SentryProfilingConditionals.h │ │ │ ├── SentryProfilingLogging.hpp │ │ │ ├── SentryQueueableRequestManager.h │ │ │ ├── SentryRandom.h │ │ │ ├── SentryRateLimitParser.h │ │ │ ├── SentryRateLimits.h │ │ │ ├── SentryRequestManager.h │ │ │ ├── SentryRequestOperation.h │ │ │ ├── SentryRetryAfterHeaderParser.h │ │ │ ├── SentrySDK+Private.h │ │ │ ├── SentrySDK.h │ │ │ ├── SentrySampleDecision.h │ │ │ ├── SentrySamplingContext.h │ │ │ ├── SentrySamplingProfiler.hpp │ │ │ ├── SentryScope+Private.h │ │ │ ├── SentryScope.h │ │ │ ├── SentryScopeObserver.h │ │ │ ├── SentryScopeSyncC.h │ │ │ ├── SentryScreenFrames.h │ │ │ ├── SentrySdkInfo.h │ │ │ ├── SentrySerializable.h │ │ │ ├── SentrySerialization.h │ │ │ ├── SentrySession+Private.h │ │ │ ├── SentrySession.h │ │ │ ├── SentrySessionCrashedHandler.h │ │ │ ├── SentrySessionTracker.h │ │ │ ├── SentrySpan.h │ │ │ ├── SentrySpanContext.h │ │ │ ├── SentrySpanId.h │ │ │ ├── SentrySpanProtocol.h │ │ │ ├── SentrySpanStatus.h │ │ │ ├── SentryStackBounds.hpp │ │ │ ├── SentryStackFrame.hpp │ │ │ ├── SentryStacktrace.h │ │ │ ├── SentryStacktraceBuilder.h │ │ │ ├── SentrySubClassFinder.h │ │ │ ├── SentrySwizzle.h │ │ │ ├── SentrySysctl.h │ │ │ ├── SentrySystemEventBreadcrumbs.h │ │ │ ├── SentryThread.h │ │ │ ├── SentryThreadHandle.hpp │ │ │ ├── SentryThreadInspector.h │ │ │ ├── SentryThreadMetadataCache.hpp │ │ │ ├── SentryThreadState.hpp │ │ │ ├── SentryThreadWrapper.h │ │ │ ├── SentryTime.h │ │ │ ├── SentryTraceHeader.h │ │ │ ├── SentryTraceState.h │ │ │ ├── SentryTracer.h │ │ │ ├── SentryTracesSampler.h │ │ │ ├── SentryTransaction+Private.h │ │ │ ├── SentryTransaction.h │ │ │ ├── SentryTransactionContext.h │ │ │ ├── SentryTransport.h │ │ │ ├── SentryTransportFactory.h │ │ │ ├── SentryUIViewControllerPerformanceTracker.h │ │ │ ├── SentryUIViewControllerSanitizer.h │ │ │ ├── SentryUIViewControllerSwizzling.h │ │ │ ├── SentryUser.h │ │ │ ├── SentryUserFeedback.h │ │ │ ├── UIViewController+Sentry.h │ │ │ └── fishhook.h │ └── Public │ │ ├── EasyMapping │ │ ├── EKCoreDataImporter.h │ │ ├── EKManagedObjectMapper.h │ │ ├── EKManagedObjectMapping.h │ │ ├── EKManagedObjectModel.h │ │ ├── EKMapper.h │ │ ├── EKMappingBlocks.h │ │ ├── EKMappingProtocol.h │ │ ├── EKObjectMapping.h │ │ ├── EKObjectModel.h │ │ ├── EKPropertyHelper.h │ │ ├── EKPropertyMapping.h │ │ ├── EKRelationshipMapping.h │ │ ├── EKSerializer.h │ │ ├── EasyMapping.h │ │ ├── NSArray+FlattenArray.h │ │ └── NSDateFormatter+EasyMappingAdditions.h │ │ ├── Expecta │ │ ├── EXPBlockDefinedMatcher.h │ │ ├── EXPDefines.h │ │ ├── EXPDoubleTuple.h │ │ ├── EXPExpect.h │ │ ├── EXPFloatTuple.h │ │ ├── EXPMatcher.h │ │ ├── EXPMatcherHelpers.h │ │ ├── EXPMatchers+beCloseTo.h │ │ ├── EXPMatchers+beFalsy.h │ │ ├── EXPMatchers+beGreaterThan.h │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ ├── EXPMatchers+beIdenticalTo.h │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ ├── EXPMatchers+beInstanceOf.h │ │ ├── EXPMatchers+beKindOf.h │ │ ├── EXPMatchers+beLessThan.h │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ ├── EXPMatchers+beNil.h │ │ ├── EXPMatchers+beSubclassOf.h │ │ ├── EXPMatchers+beSupersetOf.h │ │ ├── EXPMatchers+beTruthy.h │ │ ├── EXPMatchers+beginWith.h │ │ ├── EXPMatchers+conformTo.h │ │ ├── EXPMatchers+contain.h │ │ ├── EXPMatchers+endWith.h │ │ ├── EXPMatchers+equal.h │ │ ├── EXPMatchers+haveCountOf.h │ │ ├── EXPMatchers+match.h │ │ ├── EXPMatchers+postNotification.h │ │ ├── EXPMatchers+raise.h │ │ ├── EXPMatchers+raiseWithReason.h │ │ ├── EXPMatchers+respondTo.h │ │ ├── EXPMatchers.h │ │ ├── EXPUnsupportedObject.h │ │ ├── Expecta.h │ │ ├── ExpectaObject.h │ │ ├── ExpectaSupport.h │ │ ├── NSObject+Expecta.h │ │ └── NSValue+Expecta.h │ │ ├── Kingfisher │ │ ├── Kingfisher-umbrella.h │ │ ├── Kingfisher.h │ │ └── Kingfisher.modulemap │ │ ├── Mixpanel │ │ ├── Mixpanel.h │ │ ├── MixpanelGroup.h │ │ ├── MixpanelPeople.h │ │ └── MixpanelType.h │ │ ├── OCMock │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── OCMArg.h │ │ ├── OCMConstraint.h │ │ ├── OCMFunctions.h │ │ ├── OCMLocation.h │ │ ├── OCMMacroState.h │ │ ├── OCMRecorder.h │ │ ├── OCMStubRecorder.h │ │ ├── OCMock.h │ │ └── OCMockObject.h │ │ ├── SDWebImage │ │ ├── NSButton+WebCache.h │ │ ├── NSData+ImageContentType.h │ │ ├── NSImage+Compatibility.h │ │ ├── SDAnimatedImage.h │ │ ├── SDAnimatedImageRep.h │ │ ├── SDAnimatedImageView+WebCache.h │ │ ├── SDAnimatedImageView.h │ │ ├── SDDiskCache.h │ │ ├── SDImageAPNGCoder.h │ │ ├── SDImageCache.h │ │ ├── SDImageCacheConfig.h │ │ ├── SDImageCacheDefine.h │ │ ├── SDImageCachesManager.h │ │ ├── SDImageCoder.h │ │ ├── SDImageCoderHelper.h │ │ ├── SDImageCodersManager.h │ │ ├── SDImageFrame.h │ │ ├── SDImageGIFCoder.h │ │ ├── SDImageGraphics.h │ │ ├── SDImageIOCoder.h │ │ ├── SDImageLoader.h │ │ ├── SDImageLoadersManager.h │ │ ├── SDImageTransformer.h │ │ ├── SDMemoryCache.h │ │ ├── SDWebImage.h │ │ ├── SDWebImageCacheKeyFilter.h │ │ ├── SDWebImageCacheSerializer.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDefine.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderConfig.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ ├── SDWebImageError.h │ │ ├── SDWebImageIndicator.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImageTransition.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MemoryCacheCost.h │ │ ├── UIImage+Metadata.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+Transform.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ ├── UIView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ │ └── Sentry │ │ ├── PrivateSentrySDKOnly.h │ │ ├── Sentry.h │ │ ├── SentryAppStartMeasurement.h │ │ ├── SentryAttachment.h │ │ ├── SentryBreadcrumb.h │ │ ├── SentryClient.h │ │ ├── SentryCrashExceptionApplication.h │ │ ├── SentryDebugImageProvider.h │ │ ├── SentryDebugMeta.h │ │ ├── SentryDefines.h │ │ ├── SentryDsn.h │ │ ├── SentryEnvelope.h │ │ ├── SentryEnvelopeItemType.h │ │ ├── SentryError.h │ │ ├── SentryEvent.h │ │ ├── SentryException.h │ │ ├── SentryFrame.h │ │ ├── SentryHub.h │ │ ├── SentryId.h │ │ ├── SentryIntegrationProtocol.h │ │ ├── SentryMechanism.h │ │ ├── SentryMechanismMeta.h │ │ ├── SentryMessage.h │ │ ├── SentryNSError.h │ │ ├── SentryOptions.h │ │ ├── SentryProfilingConditionals.h │ │ ├── SentrySDK.h │ │ ├── SentrySampleDecision.h │ │ ├── SentrySamplingContext.h │ │ ├── SentryScope.h │ │ ├── SentryScreenFrames.h │ │ ├── SentrySdkInfo.h │ │ ├── SentrySerializable.h │ │ ├── SentrySession.h │ │ ├── SentrySpanContext.h │ │ ├── SentrySpanId.h │ │ ├── SentrySpanProtocol.h │ │ ├── SentrySpanStatus.h │ │ ├── SentryStacktrace.h │ │ ├── SentryThread.h │ │ ├── SentryTraceHeader.h │ │ ├── SentryTransactionContext.h │ │ ├── SentryUser.h │ │ └── SentryUserFeedback.h ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Cache │ │ ├── CacheSerializer.swift │ │ ├── DiskStorage.swift │ │ ├── FormatIndicatedCacheSerializer.swift │ │ ├── ImageCache.swift │ │ ├── MemoryStorage.swift │ │ └── Storage.swift │ │ ├── Extensions │ │ ├── ImageView+Kingfisher.swift │ │ ├── NSButton+Kingfisher.swift │ │ ├── NSTextAttachment+Kingfisher.swift │ │ ├── UIButton+Kingfisher.swift │ │ └── WKInterfaceImage+Kingfisher.swift │ │ ├── General │ │ ├── Deprecated.swift │ │ ├── ImageSource │ │ │ ├── AVAssetImageDataProvider.swift │ │ │ ├── ImageDataProvider.swift │ │ │ ├── Resource.swift │ │ │ └── Source.swift │ │ ├── Kingfisher.swift │ │ ├── KingfisherError.swift │ │ ├── KingfisherManager.swift │ │ └── KingfisherOptionsInfo.swift │ │ ├── Image │ │ ├── Filter.swift │ │ ├── GIFAnimatedImage.swift │ │ ├── Image.swift │ │ ├── ImageDrawing.swift │ │ ├── ImageFormat.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageProgressive.swift │ │ ├── ImageTransition.swift │ │ └── Placeholder.swift │ │ ├── Kingfisher.h │ │ ├── Networking │ │ ├── AuthenticationChallengeResponsable.swift │ │ ├── ImageDataProcessor.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageDownloaderDelegate.swift │ │ ├── ImageModifier.swift │ │ ├── ImagePrefetcher.swift │ │ ├── RedirectHandler.swift │ │ ├── RequestModifier.swift │ │ ├── RetryStrategy.swift │ │ ├── SessionDataTask.swift │ │ └── SessionDelegate.swift │ │ ├── SwiftUI │ │ ├── ImageBinder.swift │ │ └── KFImage.swift │ │ ├── Utility │ │ ├── Box.swift │ │ ├── CallbackQueue.swift │ │ ├── Delegate.swift │ │ ├── ExtensionHelpers.swift │ │ ├── Result.swift │ │ ├── Runtime.swift │ │ ├── SizeExtensions.swift │ │ └── String+MD5.swift │ │ └── Views │ │ ├── AnimatedImageView.swift │ │ └── Indicator.swift ├── Local Podspecs │ └── Sentry.podspec.json ├── Manifest.lock ├── Mixpanel │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AutomaticEvents.h │ │ ├── AutomaticEvents.m │ │ ├── MPDB.h │ │ ├── MPDB.m │ │ ├── MPFoundation.h │ │ ├── MPJSONHander.h │ │ ├── MPJSONHandler.m │ │ ├── MPLogger.h │ │ ├── MPLogger.m │ │ ├── MPNetwork.h │ │ ├── MPNetwork.m │ │ ├── MPNetworkPrivate.h │ │ ├── Mixpanel.h │ │ ├── Mixpanel.m │ │ ├── MixpanelExceptionHandler.h │ │ ├── MixpanelExceptionHandler.m │ │ ├── MixpanelGroup.h │ │ ├── MixpanelGroup.m │ │ ├── MixpanelGroupPrivate.h │ │ ├── MixpanelIdentity.h │ │ ├── MixpanelIdentity.m │ │ ├── MixpanelPeople.h │ │ ├── MixpanelPeople.m │ │ ├── MixpanelPeoplePrivate.h │ │ ├── MixpanelPersistence.h │ │ ├── MixpanelPersistence.m │ │ ├── MixpanelPrivate.h │ │ ├── MixpanelType.h │ │ ├── MixpanelType.m │ │ ├── MixpanelWatchProperties.h │ │ ├── MixpanelWatchProperties.m │ │ ├── SessionMetadata.h │ │ └── SessionMetadata.m ├── OCMock │ ├── License.txt │ ├── README.md │ └── Source │ │ └── OCMock │ │ ├── NSInvocation+OCMAdditions.h │ │ ├── NSInvocation+OCMAdditions.m │ │ ├── NSMethodSignature+OCMAdditions.h │ │ ├── NSMethodSignature+OCMAdditions.m │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── NSNotificationCenter+OCMAdditions.m │ │ ├── NSObject+OCMAdditions.h │ │ ├── NSObject+OCMAdditions.m │ │ ├── NSValue+OCMAdditions.h │ │ ├── NSValue+OCMAdditions.m │ │ ├── OCClassMockObject.h │ │ ├── OCClassMockObject.m │ │ ├── OCMArg.h │ │ ├── OCMArg.m │ │ ├── OCMArgAction.h │ │ ├── OCMArgAction.m │ │ ├── OCMBlockArgCaller.h │ │ ├── OCMBlockArgCaller.m │ │ ├── OCMBlockCaller.h │ │ ├── OCMBlockCaller.m │ │ ├── OCMBoxedReturnValueProvider.h │ │ ├── OCMBoxedReturnValueProvider.m │ │ ├── OCMConstraint.h │ │ ├── OCMConstraint.m │ │ ├── OCMExceptionReturnValueProvider.h │ │ ├── OCMExceptionReturnValueProvider.m │ │ ├── OCMExpectationRecorder.h │ │ ├── OCMExpectationRecorder.m │ │ ├── OCMFunctions.h │ │ ├── OCMFunctions.m │ │ ├── OCMFunctionsPrivate.h │ │ ├── OCMIndirectReturnValueProvider.h │ │ ├── OCMIndirectReturnValueProvider.m │ │ ├── OCMInvocationExpectation.h │ │ ├── OCMInvocationExpectation.m │ │ ├── OCMInvocationMatcher.h │ │ ├── OCMInvocationMatcher.m │ │ ├── OCMInvocationStub.h │ │ ├── OCMInvocationStub.m │ │ ├── OCMLocation.h │ │ ├── OCMLocation.m │ │ ├── OCMMacroState.h │ │ ├── OCMMacroState.m │ │ ├── OCMNotificationPoster.h │ │ ├── OCMNotificationPoster.m │ │ ├── OCMObserverRecorder.h │ │ ├── OCMObserverRecorder.m │ │ ├── OCMPassByRefSetter.h │ │ ├── OCMPassByRefSetter.m │ │ ├── OCMRealObjectForwarder.h │ │ ├── OCMRealObjectForwarder.m │ │ ├── OCMRecorder.h │ │ ├── OCMRecorder.m │ │ ├── OCMReturnValueProvider.h │ │ ├── OCMReturnValueProvider.m │ │ ├── OCMStubRecorder.h │ │ ├── OCMStubRecorder.m │ │ ├── OCMVerifier.h │ │ ├── OCMVerifier.m │ │ ├── OCMock.h │ │ ├── OCMockObject.h │ │ ├── OCMockObject.m │ │ ├── OCObserverMockObject.h │ │ ├── OCObserverMockObject.m │ │ ├── OCPartialMockObject.h │ │ ├── OCPartialMockObject.m │ │ ├── OCProtocolMockObject.h │ │ └── OCProtocolMockObject.m ├── Pods.xcodeproj │ └── project.pbxproj ├── SDWebImage │ ├── LICENSE │ ├── README.md │ ├── SDWebImage │ │ ├── NSButton+WebCache.h │ │ ├── NSButton+WebCache.m │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── NSImage+Compatibility.h │ │ ├── NSImage+Compatibility.m │ │ ├── Private │ │ │ ├── NSBezierPath+RoundedCorners.h │ │ │ ├── NSBezierPath+RoundedCorners.m │ │ │ ├── SDAsyncBlockOperation.h │ │ │ ├── SDAsyncBlockOperation.m │ │ │ ├── SDImageAPNGCoderInternal.h │ │ │ ├── SDImageAssetManager.h │ │ │ ├── SDImageAssetManager.m │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ ├── SDImageCachesManagerOperation.m │ │ │ ├── SDImageGIFCoderInternal.h │ │ │ ├── SDInternalMacros.h │ │ │ ├── SDInternalMacros.m │ │ │ ├── SDWeakProxy.h │ │ │ ├── SDWeakProxy.m │ │ │ ├── SDmetamacros.h │ │ │ ├── UIColor+HexString.h │ │ │ └── UIColor+HexString.m │ │ ├── SDAnimatedImage.h │ │ ├── SDAnimatedImage.m │ │ ├── SDAnimatedImageRep.h │ │ ├── SDAnimatedImageRep.m │ │ ├── SDAnimatedImageView+WebCache.h │ │ ├── SDAnimatedImageView+WebCache.m │ │ ├── SDAnimatedImageView.h │ │ ├── SDAnimatedImageView.m │ │ ├── SDDiskCache.h │ │ ├── SDDiskCache.m │ │ ├── SDImageAPNGCoder.h │ │ ├── SDImageAPNGCoder.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDImageCacheConfig.h │ │ ├── SDImageCacheConfig.m │ │ ├── SDImageCacheDefine.h │ │ ├── SDImageCacheDefine.m │ │ ├── SDImageCachesManager.h │ │ ├── SDImageCachesManager.m │ │ ├── SDImageCoder.h │ │ ├── SDImageCoder.m │ │ ├── SDImageCoderHelper.h │ │ ├── SDImageCoderHelper.m │ │ ├── SDImageCodersManager.h │ │ ├── SDImageCodersManager.m │ │ ├── SDImageFrame.h │ │ ├── SDImageFrame.m │ │ ├── SDImageGIFCoder.h │ │ ├── SDImageGIFCoder.m │ │ ├── SDImageGraphics.h │ │ ├── SDImageGraphics.m │ │ ├── SDImageIOCoder.h │ │ ├── SDImageIOCoder.m │ │ ├── SDImageLoader.h │ │ ├── SDImageLoader.m │ │ ├── SDImageLoadersManager.h │ │ ├── SDImageLoadersManager.m │ │ ├── SDImageTransformer.h │ │ ├── SDImageTransformer.m │ │ ├── SDMemoryCache.h │ │ ├── SDMemoryCache.m │ │ ├── SDWebImageCacheKeyFilter.h │ │ ├── SDWebImageCacheKeyFilter.m │ │ ├── SDWebImageCacheSerializer.h │ │ ├── SDWebImageCacheSerializer.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDefine.h │ │ ├── SDWebImageDefine.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderConfig.h │ │ ├── SDWebImageDownloaderConfig.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ ├── SDWebImageDownloaderRequestModifier.m │ │ ├── SDWebImageError.h │ │ ├── SDWebImageError.m │ │ ├── SDWebImageIndicator.h │ │ ├── SDWebImageIndicator.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── SDWebImageTransition.h │ │ ├── SDWebImageTransition.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+ForceDecode.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MemoryCacheCost.h │ │ ├── UIImage+MemoryCacheCost.m │ │ ├── UIImage+Metadata.h │ │ ├── UIImage+Metadata.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImage+Transform.h │ │ ├── UIImage+Transform.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCache.h │ │ ├── UIView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m │ └── WebImage │ │ ├── SDWebImage.h │ │ └── SDWebImage.modulemap ├── Sentry │ ├── LICENSE.md │ ├── README.md │ └── Sources │ │ ├── Sentry │ │ ├── NSArray+SentrySanitize.m │ │ ├── NSData+Sentry.m │ │ ├── NSData+SentryCompression.m │ │ ├── NSDate+SentryExtras.m │ │ ├── NSDictionary+SentrySanitize.m │ │ ├── Public │ │ │ ├── PrivateSentrySDKOnly.h │ │ │ ├── Sentry.h │ │ │ ├── SentryAppStartMeasurement.h │ │ │ ├── SentryAttachment.h │ │ │ ├── SentryBreadcrumb.h │ │ │ ├── SentryClient.h │ │ │ ├── SentryCrashExceptionApplication.h │ │ │ ├── SentryDebugImageProvider.h │ │ │ ├── SentryDebugMeta.h │ │ │ ├── SentryDefines.h │ │ │ ├── SentryDsn.h │ │ │ ├── SentryEnvelope.h │ │ │ ├── SentryEnvelopeItemType.h │ │ │ ├── SentryError.h │ │ │ ├── SentryEvent.h │ │ │ ├── SentryException.h │ │ │ ├── SentryFrame.h │ │ │ ├── SentryHub.h │ │ │ ├── SentryId.h │ │ │ ├── SentryIntegrationProtocol.h │ │ │ ├── SentryMechanism.h │ │ │ ├── SentryMechanismMeta.h │ │ │ ├── SentryMessage.h │ │ │ ├── SentryNSError.h │ │ │ ├── SentryOptions.h │ │ │ ├── SentryProfilingConditionals.h │ │ │ ├── SentrySDK.h │ │ │ ├── SentrySampleDecision.h │ │ │ ├── SentrySamplingContext.h │ │ │ ├── SentryScope.h │ │ │ ├── SentryScreenFrames.h │ │ │ ├── SentrySdkInfo.h │ │ │ ├── SentrySerializable.h │ │ │ ├── SentrySession.h │ │ │ ├── SentrySpanContext.h │ │ │ ├── SentrySpanId.h │ │ │ ├── SentrySpanProtocol.h │ │ │ ├── SentrySpanStatus.h │ │ │ ├── SentryStacktrace.h │ │ │ ├── SentryThread.h │ │ │ ├── SentryTraceHeader.h │ │ │ ├── SentryTransactionContext.h │ │ │ ├── SentryUser.h │ │ │ └── SentryUserFeedback.h │ │ ├── SentryANRTracker.m │ │ ├── SentryANRTrackingIntegration.m │ │ ├── SentryAppStartMeasurement.m │ │ ├── SentryAppStartTracker.m │ │ ├── SentryAppStartTrackingIntegration.m │ │ ├── SentryAppState.m │ │ ├── SentryAppStateManager.m │ │ ├── SentryAsynchronousOperation.m │ │ ├── SentryAttachment.m │ │ ├── SentryAutoBreadcrumbTrackingIntegration.m │ │ ├── SentryAutoSessionTrackingIntegration.m │ │ ├── SentryBacktrace.cpp │ │ ├── SentryBreadcrumb.m │ │ ├── SentryBreadcrumbTracker.m │ │ ├── SentryByteCountFormatter.m │ │ ├── SentryClient.m │ │ ├── SentryConcurrentRateLimitsDictionary.m │ │ ├── SentryCoreDataSwizzling.m │ │ ├── SentryCoreDataTracker.m │ │ ├── SentryCoreDataTrackingIntegration.m │ │ ├── SentryCrashDefaultBinaryImageProvider.m │ │ ├── SentryCrashDefaultMachineContextWrapper.m │ │ ├── SentryCrashExceptionApplication.m │ │ ├── SentryCrashInstallationReporter.m │ │ ├── SentryCrashIntegration.m │ │ ├── SentryCrashReportConverter.m │ │ ├── SentryCrashReportSink.m │ │ ├── SentryCrashScopeObserver.m │ │ ├── SentryCrashStackEntryMapper.m │ │ ├── SentryCrashWrapper.m │ │ ├── SentryCurrentDate.m │ │ ├── SentryDataCategoryMapper.m │ │ ├── SentryDateUtil.m │ │ ├── SentryDebugImageProvider.m │ │ ├── SentryDebugMeta.m │ │ ├── SentryDefaultCurrentDateProvider.m │ │ ├── SentryDefaultObjCRuntimeWrapper.h │ │ ├── SentryDefaultObjCRuntimeWrapper.m │ │ ├── SentryDefaultRateLimits.m │ │ ├── SentryDependencyContainer.m │ │ ├── SentryDispatchQueueWrapper.m │ │ ├── SentryDsn.m │ │ ├── SentryEnvelope.m │ │ ├── SentryEnvelopeRateLimit.m │ │ ├── SentryError.m │ │ ├── SentryEvent.m │ │ ├── SentryException.m │ │ ├── SentryFileContents.m │ │ ├── SentryFileIOTrackingIntegration.m │ │ ├── SentryFileManager.m │ │ ├── SentryFrame.m │ │ ├── SentryFrameRemover.m │ │ ├── SentryFramesTracker.m │ │ ├── SentryFramesTrackingIntegration.m │ │ ├── SentryGlobalEventProcessor.m │ │ ├── SentryHttpDateParser.m │ │ ├── SentryHttpTransport.m │ │ ├── SentryHub.m │ │ ├── SentryHybridSKdsOnly.m │ │ ├── SentryId.m │ │ ├── SentryInAppLogic.m │ │ ├── SentryInstallation.m │ │ ├── SentryLevelMapper.m │ │ ├── SentryLog.m │ │ ├── SentryLogOutput.m │ │ ├── SentryMachLogging.cpp │ │ ├── SentryMechanism.m │ │ ├── SentryMechanismMeta.m │ │ ├── SentryMessage.m │ │ ├── SentryMeta.m │ │ ├── SentryMigrateSessionInit.m │ │ ├── SentryNSDataSwizzling.m │ │ ├── SentryNSDataTracker.m │ │ ├── SentryNSError.m │ │ ├── SentryNSURLRequest.m │ │ ├── SentryNSURLSessionTaskSearch.m │ │ ├── SentryNetworkTracker.m │ │ ├── SentryNetworkTrackingIntegration.m │ │ ├── SentryNoOpSpan.h │ │ ├── SentryNoOpSpan.m │ │ ├── SentryOptions.m │ │ ├── SentryOutOfMemoryLogic.m │ │ ├── SentryOutOfMemoryTracker.m │ │ ├── SentryOutOfMemoryTrackingIntegration.m │ │ ├── SentryPerformanceTracker.m │ │ ├── SentryPerformanceTrackingIntegration.m │ │ ├── SentryProfiler.mm │ │ ├── SentryProfilingLogging.mm │ │ ├── SentryQueueableRequestManager.m │ │ ├── SentryRandom.m │ │ ├── SentryRateLimitParser.m │ │ ├── SentryRequestOperation.m │ │ ├── SentryRetryAfterHeaderParser.m │ │ ├── SentrySDK.m │ │ ├── SentrySamplingContext.m │ │ ├── SentrySamplingProfiler.cpp │ │ ├── SentryScope.m │ │ ├── SentryScopeSyncC.c │ │ ├── SentryScreenFrames.m │ │ ├── SentrySdkInfo.m │ │ ├── SentrySerialization.m │ │ ├── SentrySession.m │ │ ├── SentrySessionCrashedHandler.m │ │ ├── SentrySessionTracker.m │ │ ├── SentrySpan.m │ │ ├── SentrySpanContext.m │ │ ├── SentrySpanId.m │ │ ├── SentryStacktrace.m │ │ ├── SentryStacktraceBuilder.m │ │ ├── SentrySubClassFinder.h │ │ ├── SentrySubClassFinder.m │ │ ├── SentrySwizzle.m │ │ ├── SentrySysctl.m │ │ ├── SentrySystemEventBreadcrumbs.m │ │ ├── SentryThread.m │ │ ├── SentryThreadHandle.cpp │ │ ├── SentryThreadInspector.m │ │ ├── SentryThreadMetadataCache.cpp │ │ ├── SentryThreadWrapper.m │ │ ├── SentryTime.mm │ │ ├── SentryTraceHeader.m │ │ ├── SentryTraceState.m │ │ ├── SentryTracer.m │ │ ├── SentryTracesSampler.m │ │ ├── SentryTransaction.m │ │ ├── SentryTransactionContext.m │ │ ├── SentryTransportFactory.m │ │ ├── SentryUIViewControllerPerformanceTracker.m │ │ ├── SentryUIViewControllerSanitizer.m │ │ ├── SentryUIViewControllerSwizzling.m │ │ ├── SentryUser.m │ │ ├── SentryUserFeedback.m │ │ ├── UIViewController+Sentry.m │ │ └── include │ │ │ ├── NSArray+SentrySanitize.h │ │ │ ├── NSData+Sentry.h │ │ │ ├── NSData+SentryCompression.h │ │ │ ├── NSDate+SentryExtras.h │ │ │ ├── NSDictionary+SentrySanitize.h │ │ │ ├── SentryANRTracker.h │ │ │ ├── SentryANRTrackingIntegration.h │ │ │ ├── SentryAppStartTracker.h │ │ │ ├── SentryAppStartTrackingIntegration.h │ │ │ ├── SentryAppState.h │ │ │ ├── SentryAppStateManager.h │ │ │ ├── SentryAsyncSafeLogging.h │ │ │ ├── SentryAsynchronousOperation.h │ │ │ ├── SentryAutoBreadcrumbTrackingIntegration.h │ │ │ ├── SentryAutoSessionTrackingIntegration.h │ │ │ ├── SentryBacktrace.hpp │ │ │ ├── SentryBreadcrumbTracker.h │ │ │ ├── SentryByteCountFormatter.h │ │ │ ├── SentryCPU.h │ │ │ ├── SentryClient+Private.h │ │ │ ├── SentryCompiler.h │ │ │ ├── SentryConcurrentRateLimitsDictionary.h │ │ │ ├── SentryCoreDataSwizzling.h │ │ │ ├── SentryCoreDataTracker.h │ │ │ ├── SentryCoreDataTrackingIntegration.h │ │ │ ├── SentryCrashBinaryImageProvider.h │ │ │ ├── SentryCrashDefaultBinaryImageProvider.h │ │ │ ├── SentryCrashDefaultMachineContextWrapper.h │ │ │ ├── SentryCrashInstallationReporter.h │ │ │ ├── SentryCrashIntegration.h │ │ │ ├── SentryCrashIsAppImage.h │ │ │ ├── SentryCrashMachineContextWrapper.h │ │ │ ├── SentryCrashReportConverter.h │ │ │ ├── SentryCrashReportSink.h │ │ │ ├── SentryCrashScopeObserver.h │ │ │ ├── SentryCrashStackEntryMapper.h │ │ │ ├── SentryCrashWrapper.h │ │ │ ├── SentryCurrentDate.h │ │ │ ├── SentryCurrentDateProvider.h │ │ │ ├── SentryDataCategory.h │ │ │ ├── SentryDataCategoryMapper.h │ │ │ ├── SentryDateUtil.h │ │ │ ├── SentryDefaultCurrentDateProvider.h │ │ │ ├── SentryDefaultRateLimits.h │ │ │ ├── SentryDependencyContainer.h │ │ │ ├── SentryDispatchQueueWrapper.h │ │ │ ├── SentryDisplayLinkWrapper.h │ │ │ ├── SentryDisplayLinkWrapper.m │ │ │ ├── SentryEnvelopeRateLimit.h │ │ │ ├── SentryFileContents.h │ │ │ ├── SentryFileIOTrackingIntegration.h │ │ │ ├── SentryFileManager.h │ │ │ ├── SentryFrameRemover.h │ │ │ ├── SentryFramesTracker.h │ │ │ ├── SentryFramesTrackingIntegration.h │ │ │ ├── SentryGlobalEventProcessor.h │ │ │ ├── SentryHexAddressFormatter.h │ │ │ ├── SentryHttpDateParser.h │ │ │ ├── SentryHttpTransport.h │ │ │ ├── SentryHub+Private.h │ │ │ ├── SentryInAppLogic.h │ │ │ ├── SentryInstallation.h │ │ │ ├── SentryInternalNotificationNames.h │ │ │ ├── SentryLevelMapper.h │ │ │ ├── SentryLog.h │ │ │ ├── SentryLogOutput.h │ │ │ ├── SentryMachLogging.hpp │ │ │ ├── SentryMeta.h │ │ │ ├── SentryMigrateSessionInit.h │ │ │ ├── SentryNSDataSwizzling.h │ │ │ ├── SentryNSDataTracker.h │ │ │ ├── SentryNSURLRequest.h │ │ │ ├── SentryNSURLSessionTaskSearch.h │ │ │ ├── SentryNetworkTracker.h │ │ │ ├── SentryNetworkTrackingIntegration.h │ │ │ ├── SentryObjCRuntimeWrapper.h │ │ │ ├── SentryOptions+Private.h │ │ │ ├── SentryOutOfMemoryLogic.h │ │ │ ├── SentryOutOfMemoryTracker.h │ │ │ ├── SentryOutOfMemoryTrackingIntegration.h │ │ │ ├── SentryPerformanceTracker.h │ │ │ ├── SentryPerformanceTrackingIntegration.h │ │ │ ├── SentryProfiler.h │ │ │ ├── SentryProfilingLogging.hpp │ │ │ ├── SentryQueueableRequestManager.h │ │ │ ├── SentryRandom.h │ │ │ ├── SentryRateLimitParser.h │ │ │ ├── SentryRateLimits.h │ │ │ ├── SentryRequestManager.h │ │ │ ├── SentryRequestOperation.h │ │ │ ├── SentryRetryAfterHeaderParser.h │ │ │ ├── SentrySDK+Private.h │ │ │ ├── SentrySamplingProfiler.hpp │ │ │ ├── SentryScope+Private.h │ │ │ ├── SentryScopeObserver.h │ │ │ ├── SentryScopeSyncC.h │ │ │ ├── SentrySerialization.h │ │ │ ├── SentrySession+Private.h │ │ │ ├── SentrySessionCrashedHandler.h │ │ │ ├── SentrySessionTracker.h │ │ │ ├── SentrySpan.h │ │ │ ├── SentryStackBounds.hpp │ │ │ ├── SentryStackFrame.hpp │ │ │ ├── SentryStacktraceBuilder.h │ │ │ ├── SentrySwizzle.h │ │ │ ├── SentrySysctl.h │ │ │ ├── SentrySystemEventBreadcrumbs.h │ │ │ ├── SentryThreadHandle.hpp │ │ │ ├── SentryThreadInspector.h │ │ │ ├── SentryThreadMetadataCache.hpp │ │ │ ├── SentryThreadState.hpp │ │ │ ├── SentryThreadWrapper.h │ │ │ ├── SentryTime.h │ │ │ ├── SentryTraceState.h │ │ │ ├── SentryTracer.h │ │ │ ├── SentryTracesSampler.h │ │ │ ├── SentryTransaction+Private.h │ │ │ ├── SentryTransaction.h │ │ │ ├── SentryTransport.h │ │ │ ├── SentryTransportFactory.h │ │ │ ├── SentryUIViewControllerPerformanceTracker.h │ │ │ ├── SentryUIViewControllerSanitizer.h │ │ │ ├── SentryUIViewControllerSwizzling.h │ │ │ └── UIViewController+Sentry.h │ │ └── SentryCrash │ │ ├── Installations │ │ ├── SentryCrashInstallation+Private.h │ │ ├── SentryCrashInstallation.h │ │ └── SentryCrashInstallation.m │ │ ├── Recording │ │ ├── Monitors │ │ │ ├── SentryCrashMonitor.c │ │ │ ├── SentryCrashMonitor.h │ │ │ ├── SentryCrashMonitorContext.h │ │ │ ├── SentryCrashMonitorType.c │ │ │ ├── SentryCrashMonitorType.h │ │ │ ├── SentryCrashMonitor_AppState.c │ │ │ ├── SentryCrashMonitor_AppState.h │ │ │ ├── SentryCrashMonitor_CPPException.cpp │ │ │ ├── SentryCrashMonitor_CPPException.h │ │ │ ├── SentryCrashMonitor_Deadlock.h │ │ │ ├── SentryCrashMonitor_Deadlock.m │ │ │ ├── SentryCrashMonitor_MachException.c │ │ │ ├── SentryCrashMonitor_MachException.h │ │ │ ├── SentryCrashMonitor_NSException.h │ │ │ ├── SentryCrashMonitor_NSException.m │ │ │ ├── SentryCrashMonitor_Signal.c │ │ │ ├── SentryCrashMonitor_Signal.h │ │ │ ├── SentryCrashMonitor_System.h │ │ │ ├── SentryCrashMonitor_System.m │ │ │ ├── SentryCrashMonitor_User.c │ │ │ ├── SentryCrashMonitor_User.h │ │ │ ├── SentryCrashMonitor_Zombie.c │ │ │ └── SentryCrashMonitor_Zombie.h │ │ ├── SentryCrash.h │ │ ├── SentryCrash.m │ │ ├── SentryCrashC.c │ │ ├── SentryCrashC.h │ │ ├── SentryCrashCachedData.c │ │ ├── SentryCrashCachedData.h │ │ ├── SentryCrashDoctor.h │ │ ├── SentryCrashDoctor.m │ │ ├── SentryCrashReport.c │ │ ├── SentryCrashReport.h │ │ ├── SentryCrashReportFields.h │ │ ├── SentryCrashReportFixer.c │ │ ├── SentryCrashReportFixer.h │ │ ├── SentryCrashReportStore.c │ │ ├── SentryCrashReportStore.h │ │ ├── SentryCrashReportVersion.h │ │ ├── SentryCrashReportWriter.h │ │ ├── SentryCrashSystemCapabilities.h │ │ └── Tools │ │ │ ├── NSError+SentrySimpleConstructor.h │ │ │ ├── NSError+SentrySimpleConstructor.m │ │ │ ├── SentryCrashCPU.c │ │ │ ├── SentryCrashCPU.h │ │ │ ├── SentryCrashCPU_Apple.h │ │ │ ├── SentryCrashCPU_arm.c │ │ │ ├── SentryCrashCPU_arm64.c │ │ │ ├── SentryCrashCPU_x86_32.c │ │ │ ├── SentryCrashCPU_x86_64.c │ │ │ ├── SentryCrashDate.c │ │ │ ├── SentryCrashDate.h │ │ │ ├── SentryCrashDebug.c │ │ │ ├── SentryCrashDebug.h │ │ │ ├── SentryCrashDynamicLinker.c │ │ │ ├── SentryCrashDynamicLinker.h │ │ │ ├── SentryCrashFileUtils.c │ │ │ ├── SentryCrashFileUtils.h │ │ │ ├── SentryCrashID.c │ │ │ ├── SentryCrashID.h │ │ │ ├── SentryCrashJSONCodec.c │ │ │ ├── SentryCrashJSONCodec.h │ │ │ ├── SentryCrashJSONCodecObjC.h │ │ │ ├── SentryCrashJSONCodecObjC.m │ │ │ ├── SentryCrashLogger.c │ │ │ ├── SentryCrashLogger.h │ │ │ ├── SentryCrashMach.c │ │ │ ├── SentryCrashMach.h │ │ │ ├── SentryCrashMachineContext.c │ │ │ ├── SentryCrashMachineContext.h │ │ │ ├── SentryCrashMachineContext_Apple.h │ │ │ ├── SentryCrashMemory.c │ │ │ ├── SentryCrashMemory.h │ │ │ ├── SentryCrashObjC.c │ │ │ ├── SentryCrashObjC.h │ │ │ ├── SentryCrashObjCApple.h │ │ │ ├── SentryCrashPlatformSpecificDefines.h │ │ │ ├── SentryCrashSignalInfo.c │ │ │ ├── SentryCrashSignalInfo.h │ │ │ ├── SentryCrashStackCursor.c │ │ │ ├── SentryCrashStackCursor.h │ │ │ ├── SentryCrashStackCursor_Backtrace.c │ │ │ ├── SentryCrashStackCursor_Backtrace.h │ │ │ ├── SentryCrashStackCursor_MachineContext.c │ │ │ ├── SentryCrashStackCursor_MachineContext.h │ │ │ ├── SentryCrashStackCursor_SelfThread.c │ │ │ ├── SentryCrashStackCursor_SelfThread.h │ │ │ ├── SentryCrashString.c │ │ │ ├── SentryCrashString.h │ │ │ ├── SentryCrashSymbolicator.c │ │ │ ├── SentryCrashSymbolicator.h │ │ │ ├── SentryCrashSysCtl.c │ │ │ ├── SentryCrashSysCtl.h │ │ │ ├── SentryCrashThread.c │ │ │ ├── SentryCrashThread.h │ │ │ ├── SentryCrashUUIDConversion.c │ │ │ ├── SentryCrashUUIDConversion.h │ │ │ ├── SentryHook.c │ │ │ ├── SentryHook.h │ │ │ ├── fishhook.c │ │ │ └── fishhook.h │ │ └── Reporting │ │ ├── Filters │ │ ├── SentryCrashReportFilter.h │ │ ├── SentryCrashReportFilterBasic.h │ │ ├── SentryCrashReportFilterBasic.m │ │ └── Tools │ │ │ ├── Container+SentryDeepSearch.h │ │ │ ├── Container+SentryDeepSearch.m │ │ │ └── SentryCrashVarArgs.h │ │ └── Tools │ │ ├── SentryCrashCString.h │ │ └── SentryCrashCString.m └── Target Support Files │ ├── EasyMapping-macOS │ ├── EasyMapping-macOS-dummy.m │ ├── EasyMapping-macOS-prefix.pch │ ├── EasyMapping-macOS.debug.xcconfig │ └── EasyMapping-macOS.release.xcconfig │ ├── EasyMapping-tvOS │ ├── EasyMapping-tvOS-dummy.m │ ├── EasyMapping-tvOS-prefix.pch │ ├── EasyMapping-tvOS.debug.xcconfig │ └── EasyMapping-tvOS.release.xcconfig │ ├── Expecta │ ├── Expecta-dummy.m │ ├── Expecta-prefix.pch │ ├── Expecta.debug.xcconfig │ └── Expecta.release.xcconfig │ ├── Kingfisher │ ├── Kingfisher-dummy.m │ ├── Kingfisher-prefix.pch │ ├── Kingfisher-umbrella.h │ ├── Kingfisher.debug.xcconfig │ ├── Kingfisher.modulemap │ └── Kingfisher.release.xcconfig │ ├── Mixpanel-macOS │ ├── Mixpanel-macOS-dummy.m │ ├── Mixpanel-macOS-prefix.pch │ ├── Mixpanel-macOS.debug.xcconfig │ └── Mixpanel-macOS.release.xcconfig │ ├── Mixpanel-tvOS │ ├── Mixpanel-tvOS-dummy.m │ ├── Mixpanel-tvOS-prefix.pch │ ├── Mixpanel-tvOS.debug.xcconfig │ └── Mixpanel-tvOS.release.xcconfig │ ├── OCMock │ ├── OCMock-dummy.m │ ├── OCMock-prefix.pch │ ├── OCMock.debug.xcconfig │ └── OCMock.release.xcconfig │ ├── Pods-BitBot │ ├── Pods-BitBot-acknowledgements.markdown │ ├── Pods-BitBot-acknowledgements.plist │ ├── Pods-BitBot-dummy.m │ ├── Pods-BitBot.debug.xcconfig │ └── Pods-BitBot.release.xcconfig │ ├── Pods-BitBotATV │ ├── Pods-BitBotATV-acknowledgements.markdown │ ├── Pods-BitBotATV-acknowledgements.plist │ ├── Pods-BitBotATV-dummy.m │ ├── Pods-BitBotATV-umbrella.h │ ├── Pods-BitBotATV.debug.xcconfig │ ├── Pods-BitBotATV.modulemap │ └── Pods-BitBotATV.release.xcconfig │ ├── Pods-BitBotTests │ ├── Pods-BitBotTests-acknowledgements.markdown │ ├── Pods-BitBotTests-acknowledgements.plist │ ├── Pods-BitBotTests-dummy.m │ ├── Pods-BitBotTests.debug.xcconfig │ └── Pods-BitBotTests.release.xcconfig │ ├── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ ├── SDWebImage.debug.xcconfig │ └── SDWebImage.release.xcconfig │ ├── Sentry-macOS │ ├── Sentry-macOS-dummy.m │ ├── Sentry-macOS-prefix.pch │ ├── Sentry-macOS.debug.xcconfig │ └── Sentry-macOS.release.xcconfig │ └── Sentry-tvOS │ ├── Sentry-tvOS-dummy.m │ ├── Sentry-tvOS-prefix.pch │ ├── Sentry-tvOS.debug.xcconfig │ └── Sentry-tvOS.release.xcconfig ├── README.md ├── _config.yml ├── icon.png ├── screenshot-1.png ├── screenshot-2.png └── screenshot-3.png /.gitignore: -------------------------------------------------------------------------------- 1 | Breakpoints_v2.xcbkptlist 2 | xcuserdata 3 | -------------------------------------------------------------------------------- /BB-github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BB-github.jpg -------------------------------------------------------------------------------- /BitBotATVDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitBotATVDebug.entitlements -------------------------------------------------------------------------------- /BitBotATVRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitBotATVRelease.entitlements -------------------------------------------------------------------------------- /BitBotATVTests/BitBot.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitBotATVTests/BitBot.xctestplan -------------------------------------------------------------------------------- /BitBotATVTests/BitBotATVTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitBotATVTests/BitBotATVTests.swift -------------------------------------------------------------------------------- /BitBotATVTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitBotATVTests/Info.plist -------------------------------------------------------------------------------- /BitBotDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitBotDebug.entitlements -------------------------------------------------------------------------------- /Bitrise.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Bitrise.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Bitrise/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/AppDelegate.h -------------------------------------------------------------------------------- /Bitrise/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/AppDelegate.m -------------------------------------------------------------------------------- /Bitrise/BitBotATV.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/BitBotATV.xctestplan -------------------------------------------------------------------------------- /Bitrise/Bitrise-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Bitrise-Bridging-Header.h -------------------------------------------------------------------------------- /Bitrise/Bitrise.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Bitrise.entitlements -------------------------------------------------------------------------------- /Bitrise/BitriseCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/BitriseCompat.h -------------------------------------------------------------------------------- /Bitrise/Container/BRContainerBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Container/BRContainerBuilder.h -------------------------------------------------------------------------------- /Bitrise/Container/BRContainerBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Container/BRContainerBuilder.m -------------------------------------------------------------------------------- /Bitrise/Container/BRDependencyContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Container/BRDependencyContainer.h -------------------------------------------------------------------------------- /Bitrise/Container/BRDependencyContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Container/BRDependencyContainer.m -------------------------------------------------------------------------------- /Bitrise/Controller/BRAboutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Controller/BRAboutViewController.h -------------------------------------------------------------------------------- /Bitrise/Controller/BRAboutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Controller/BRAboutViewController.m -------------------------------------------------------------------------------- /Bitrise/Controller/BRMainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Controller/BRMainController.h -------------------------------------------------------------------------------- /Bitrise/Controller/BRMainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Controller/BRMainController.m -------------------------------------------------------------------------------- /Bitrise/Controller/BRViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Controller/BRViewController.h -------------------------------------------------------------------------------- /Bitrise/Controller/BRViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Controller/BRViewController.m -------------------------------------------------------------------------------- /Bitrise/Controller/Logs/BRLogsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Controller/Logs/BRLogsViewController.h -------------------------------------------------------------------------------- /Bitrise/Controller/Logs/BRLogsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Controller/Logs/BRLogsViewController.m -------------------------------------------------------------------------------- /Bitrise/Controller/Logs/BRLogsWindowPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Controller/Logs/BRLogsWindowPresenter.h -------------------------------------------------------------------------------- /Bitrise/Controller/Logs/BRLogsWindowPresenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Controller/Logs/BRLogsWindowPresenter.m -------------------------------------------------------------------------------- /Bitrise/Environment/BRAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Environment/BRAnalytics.h -------------------------------------------------------------------------------- /Bitrise/Environment/BRAnalytics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Environment/BRAnalytics.m -------------------------------------------------------------------------------- /Bitrise/Environment/BRAutorun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Environment/BRAutorun.h -------------------------------------------------------------------------------- /Bitrise/Environment/BRAutorun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Environment/BRAutorun.m -------------------------------------------------------------------------------- /Bitrise/Environment/BREnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Environment/BREnvironment.h -------------------------------------------------------------------------------- /Bitrise/Environment/BREnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Environment/BREnvironment.m -------------------------------------------------------------------------------- /Bitrise/Environment/BRNotificationDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Environment/BRNotificationDispatcher.h -------------------------------------------------------------------------------- /Bitrise/Environment/BRNotificationDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Environment/BRNotificationDispatcher.m -------------------------------------------------------------------------------- /Bitrise/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Info.plist -------------------------------------------------------------------------------- /Bitrise/Networking/BRActionDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/BRActionDispatcher.h -------------------------------------------------------------------------------- /Bitrise/Networking/BRActionDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/BRActionDispatcher.m -------------------------------------------------------------------------------- /Bitrise/Networking/BRBitriseAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/BRBitriseAPI.h -------------------------------------------------------------------------------- /Bitrise/Networking/BRBitriseAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/BRBitriseAPI.m -------------------------------------------------------------------------------- /Bitrise/Networking/BRObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/BRObserver.h -------------------------------------------------------------------------------- /Bitrise/Networking/BRObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/BRObserver.m -------------------------------------------------------------------------------- /Bitrise/Networking/Commands/BRCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Commands/BRCommand.h -------------------------------------------------------------------------------- /Bitrise/Networking/Commands/BRCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Commands/BRCommand.m -------------------------------------------------------------------------------- /Bitrise/Networking/Commands/BRSyncCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Commands/BRSyncCommand.h -------------------------------------------------------------------------------- /Bitrise/Networking/Commands/BRSyncCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Commands/BRSyncCommand.m -------------------------------------------------------------------------------- /Bitrise/Networking/LogObserver/ASLogOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/LogObserver/ASLogOperation.h -------------------------------------------------------------------------------- /Bitrise/Networking/LogObserver/BRLogObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/LogObserver/BRLogObserver.h -------------------------------------------------------------------------------- /Bitrise/Networking/LogObserver/BRLogObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/LogObserver/BRLogObserver.m -------------------------------------------------------------------------------- /Bitrise/Networking/Requests/BRAPIRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Requests/BRAPIRequest.h -------------------------------------------------------------------------------- /Bitrise/Networking/Requests/BRAPIRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Requests/BRAPIRequest.m -------------------------------------------------------------------------------- /Bitrise/Networking/Requests/BRAbortRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Requests/BRAbortRequest.h -------------------------------------------------------------------------------- /Bitrise/Networking/Requests/BRAbortRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Requests/BRAbortRequest.m -------------------------------------------------------------------------------- /Bitrise/Networking/Requests/BRAccountRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Requests/BRAccountRequest.h -------------------------------------------------------------------------------- /Bitrise/Networking/Requests/BRAppsRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Requests/BRAppsRequest.h -------------------------------------------------------------------------------- /Bitrise/Networking/Requests/BRAppsRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Requests/BRAppsRequest.m -------------------------------------------------------------------------------- /Bitrise/Networking/Requests/BRLogsRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Requests/BRLogsRequest.h -------------------------------------------------------------------------------- /Bitrise/Networking/Requests/BRLogsRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Networking/Requests/BRLogsRequest.m -------------------------------------------------------------------------------- /Bitrise/Resources/Fonts/Jura/Jura-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Resources/Fonts/Jura/Jura-Bold.ttf -------------------------------------------------------------------------------- /Bitrise/Resources/Fonts/Jura/Jura-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Resources/Fonts/Jura/Jura-Medium.ttf -------------------------------------------------------------------------------- /Bitrise/Storage/BRAccountsObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/BRAccountsObserver.h -------------------------------------------------------------------------------- /Bitrise/Storage/BRAccountsObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/BRAccountsObserver.m -------------------------------------------------------------------------------- /Bitrise/Storage/BRLogStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/BRLogStorage.h -------------------------------------------------------------------------------- /Bitrise/Storage/BRLogStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/BRLogStorage.m -------------------------------------------------------------------------------- /Bitrise/Storage/BRLogsParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/BRLogsParser.h -------------------------------------------------------------------------------- /Bitrise/Storage/BRLogsParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/BRLogsParser.m -------------------------------------------------------------------------------- /Bitrise/Storage/BRStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/BRStorage.h -------------------------------------------------------------------------------- /Bitrise/Storage/BRStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/BRStorage.m -------------------------------------------------------------------------------- /Bitrise/Storage/Models/BRAccountInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/Models/BRAccountInfo.h -------------------------------------------------------------------------------- /Bitrise/Storage/Models/BRAccountInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/Models/BRAccountInfo.m -------------------------------------------------------------------------------- /Bitrise/Storage/Models/BRAppInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/Models/BRAppInfo.h -------------------------------------------------------------------------------- /Bitrise/Storage/Models/BRAppInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/Models/BRAppInfo.m -------------------------------------------------------------------------------- /Bitrise/Storage/Models/BRBuildInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/Models/BRBuildInfo.h -------------------------------------------------------------------------------- /Bitrise/Storage/Models/BRBuildInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/Models/BRBuildInfo.m -------------------------------------------------------------------------------- /Bitrise/Storage/Models/BRLogInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/Models/BRLogInfo.h -------------------------------------------------------------------------------- /Bitrise/Storage/Models/BRLogInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Storage/Models/BRLogInfo.m -------------------------------------------------------------------------------- /Bitrise/Sync/BRAddAccountOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Sync/BRAddAccountOperation.h -------------------------------------------------------------------------------- /Bitrise/Sync/BRAddAccountOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Sync/BRAddAccountOperation.m -------------------------------------------------------------------------------- /Bitrise/Sync/BRSyncDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Sync/BRSyncDiff.h -------------------------------------------------------------------------------- /Bitrise/Sync/BRSyncDiff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Sync/BRSyncDiff.m -------------------------------------------------------------------------------- /Bitrise/Sync/BRSyncEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Sync/BRSyncEngine.h -------------------------------------------------------------------------------- /Bitrise/Sync/BRSyncEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Sync/BRSyncEngine.m -------------------------------------------------------------------------------- /Bitrise/Sync/BRSyncOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Sync/BRSyncOperation.h -------------------------------------------------------------------------------- /Bitrise/Sync/BRSyncOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Sync/BRSyncOperation.m -------------------------------------------------------------------------------- /Bitrise/Sync/BRSyncResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Sync/BRSyncResult.h -------------------------------------------------------------------------------- /Bitrise/Sync/BRSyncResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Sync/BRSyncResult.m -------------------------------------------------------------------------------- /Bitrise/Tools/BRLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Tools/BRLogger.h -------------------------------------------------------------------------------- /Bitrise/Tools/BRLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Tools/BRLogger.m -------------------------------------------------------------------------------- /Bitrise/Tools/BRMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Tools/BRMacro.h -------------------------------------------------------------------------------- /Bitrise/Tools/Queue/ASQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Tools/Queue/ASQueue.h -------------------------------------------------------------------------------- /Bitrise/Tools/Queue/ASQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Tools/Queue/ASQueue.m -------------------------------------------------------------------------------- /Bitrise/Tools/Queue/BROperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Tools/Queue/BROperation.h -------------------------------------------------------------------------------- /Bitrise/Tools/Queue/BROperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/Tools/Queue/BROperation.m -------------------------------------------------------------------------------- /Bitrise/View/BRBuildStateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRBuildStateInfo.h -------------------------------------------------------------------------------- /Bitrise/View/BRBuildStateInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRBuildStateInfo.m -------------------------------------------------------------------------------- /Bitrise/View/BRCellBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRCellBuilder.h -------------------------------------------------------------------------------- /Bitrise/View/BRCellBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRCellBuilder.m -------------------------------------------------------------------------------- /Bitrise/View/BRPlaceholderViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRPlaceholderViews.h -------------------------------------------------------------------------------- /Bitrise/View/BRPlaceholderViews.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRPlaceholderViews.m -------------------------------------------------------------------------------- /Bitrise/View/BRProgressObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRProgressObserver.h -------------------------------------------------------------------------------- /Bitrise/View/BRProgressObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRProgressObserver.m -------------------------------------------------------------------------------- /Bitrise/View/BRSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRSegue.h -------------------------------------------------------------------------------- /Bitrise/View/BRStyleSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRStyleSheet.h -------------------------------------------------------------------------------- /Bitrise/View/BRStyleSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/BRStyleSheet.m -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRAccountCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRAccountCellView.h -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRAccountCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRAccountCellView.m -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRAppCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRAppCellView.h -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRAppCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRAppCellView.m -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRBuildCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRBuildCellView.h -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRBuildCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRBuildCellView.m -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRLogLineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRLogLineView.h -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRLogLineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRLogLineView.m -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRLogStepView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRLogStepView.h -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRLogStepView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRLogStepView.m -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRManagingAppCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRManagingAppCellView.h -------------------------------------------------------------------------------- /Bitrise/View/Cells/BRManagingAppCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Cells/BRManagingAppCellView.m -------------------------------------------------------------------------------- /Bitrise/View/Custom/BRAboutTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/BRAboutTextView.h -------------------------------------------------------------------------------- /Bitrise/View/Custom/BRAboutTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/BRAboutTextView.m -------------------------------------------------------------------------------- /Bitrise/View/Custom/BREmptyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/BREmptyView.h -------------------------------------------------------------------------------- /Bitrise/View/Custom/BREmptyView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/BREmptyView.m -------------------------------------------------------------------------------- /Bitrise/View/Custom/BRLogScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/BRLogScroller.h -------------------------------------------------------------------------------- /Bitrise/View/Custom/BRLogScroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/BRLogScroller.m -------------------------------------------------------------------------------- /Bitrise/View/Custom/BRLogStatusView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/BRLogStatusView.h -------------------------------------------------------------------------------- /Bitrise/View/Custom/BRLogStatusView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/BRLogStatusView.m -------------------------------------------------------------------------------- /Bitrise/View/Custom/BRScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/BRScroller.h -------------------------------------------------------------------------------- /Bitrise/View/Custom/BRScroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/BRScroller.m -------------------------------------------------------------------------------- /Bitrise/View/Custom/Dots view/BRDotsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/Dots view/BRDotsView.h -------------------------------------------------------------------------------- /Bitrise/View/Custom/Dots view/BRDotsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Custom/Dots view/BRDotsView.m -------------------------------------------------------------------------------- /Bitrise/View/Menus/BRBuildMenuController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Menus/BRBuildMenuController.h -------------------------------------------------------------------------------- /Bitrise/View/Menus/BRBuildMenuController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Menus/BRBuildMenuController.m -------------------------------------------------------------------------------- /Bitrise/View/Storyboards/About.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Storyboards/About.storyboard -------------------------------------------------------------------------------- /Bitrise/View/Storyboards/Accounts.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Storyboards/Accounts.storyboard -------------------------------------------------------------------------------- /Bitrise/View/Storyboards/Logs.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Storyboards/Logs.storyboard -------------------------------------------------------------------------------- /Bitrise/View/Tools/AMR_ANSIEscapeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Tools/AMR_ANSIEscapeHelper.h -------------------------------------------------------------------------------- /Bitrise/View/Tools/AMR_ANSIEscapeHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Tools/AMR_ANSIEscapeHelper.m -------------------------------------------------------------------------------- /Bitrise/View/Tools/BRLogPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Tools/BRLogPresenter.h -------------------------------------------------------------------------------- /Bitrise/View/Tools/BRLogPresenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/View/Tools/BRLogPresenter.m -------------------------------------------------------------------------------- /Bitrise/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Bitrise/main.m -------------------------------------------------------------------------------- /BitriseATV/Application/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Application/AppState.swift -------------------------------------------------------------------------------- /BitriseATV/Application/BitriseATVApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Application/BitriseATVApp.swift -------------------------------------------------------------------------------- /BitriseATV/BitriseATV.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/BitriseATV.entitlements -------------------------------------------------------------------------------- /BitriseATV/Common/Redux/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Common/Redux/Action.swift -------------------------------------------------------------------------------- /BitriseATV/Common/Redux/Connector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Common/Redux/Connector.swift -------------------------------------------------------------------------------- /BitriseATV/Common/Redux/Observer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Common/Redux/Observer.swift -------------------------------------------------------------------------------- /BitriseATV/Common/Redux/Store.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Common/Redux/Store.swift -------------------------------------------------------------------------------- /BitriseATV/Common/Redux/StoreProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Common/Redux/StoreProvider.swift -------------------------------------------------------------------------------- /BitriseATV/Common/Utility/AsyncImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Common/Utility/AsyncImage.swift -------------------------------------------------------------------------------- /BitriseATV/Features/About/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Features/About/AboutView.swift -------------------------------------------------------------------------------- /BitriseATV/Features/Apps/App/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Features/Apps/App/AppView.swift -------------------------------------------------------------------------------- /BitriseATV/Features/Apps/AppsConnector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Features/Apps/AppsConnector.swift -------------------------------------------------------------------------------- /BitriseATV/Features/Apps/AppsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Features/Apps/AppsView.swift -------------------------------------------------------------------------------- /BitriseATV/Features/Builds/BuildsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Features/Builds/BuildsView.swift -------------------------------------------------------------------------------- /BitriseATV/Features/RootView/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Features/RootView/RootView.swift -------------------------------------------------------------------------------- /BitriseATV/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseATV/Supporting Files/Info.plist -------------------------------------------------------------------------------- /BitriseTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseTests/Info.plist -------------------------------------------------------------------------------- /BitriseTests/Storage/BRLogsParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseTests/Storage/BRLogsParserTests.m -------------------------------------------------------------------------------- /BitriseTests/Storage/BRStorageTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseTests/Storage/BRStorageTests.m -------------------------------------------------------------------------------- /BitriseTests/TestTools/BRLogStubBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseTests/TestTools/BRLogStubBuilder.h -------------------------------------------------------------------------------- /BitriseTests/TestTools/BRLogStubBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseTests/TestTools/BRLogStubBuilder.m -------------------------------------------------------------------------------- /BitriseTests/TestTools/BRMockBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseTests/TestTools/BRMockBuilder.h -------------------------------------------------------------------------------- /BitriseTests/TestTools/BRMockBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/BitriseTests/TestTools/BRMockBuilder.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/EasyMapping/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/EasyMapping/LICENSE -------------------------------------------------------------------------------- /Pods/EasyMapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/EasyMapping/README.md -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPDoubleTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/EXPDoubleTuple.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPExpect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/EXPExpect.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPFloatTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/EXPFloatTuple.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPUnsupportedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/EXPUnsupportedObject.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/ExpectaObject.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/ExpectaSupport.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/NSValue+Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/Expecta/NSValue+Expecta.m -------------------------------------------------------------------------------- /Pods/Expecta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/LICENSE -------------------------------------------------------------------------------- /Pods/Expecta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Expecta/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKCoreDataImporter.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKCoreDataImporter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKManagedObjectMapper.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKManagedObjectMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKManagedObjectMapping.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKManagedObjectMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKManagedObjectModel.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKManagedObjectModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKMapper.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKMappingBlocks.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKMappingBlocks.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKMappingProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKMappingProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKObjectMapping.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKObjectMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKObjectModel.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKObjectModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKPropertyHelper.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKPropertyHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKPropertyMapping.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKPropertyMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKRelationshipMapping.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKRelationshipMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EKSerializer.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKSerializer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/EasyMapping.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EasyMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EasyMapping/NSArray+FlattenArray.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/NSArray+FlattenArray.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Kingfisher/Kingfisher.h: -------------------------------------------------------------------------------- 1 | ../../../Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/AutomaticEvents.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/AutomaticEvents.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPDB.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MPDB.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MPFoundation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPJSONHander.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MPJSONHander.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPLogger.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MPLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPNetwork.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MPNetwork.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPNetworkPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MPNetworkPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/Mixpanel.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/Mixpanel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelExceptionHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelExceptionHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelGroup.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelGroupPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelGroupPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelIdentity.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelIdentity.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelPeople.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelPeople.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelPeoplePrivate.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelPeoplePrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelPersistence.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelPersistence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelType.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelWatchProperties.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelWatchProperties.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/SessionMetadata.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/SessionMetadata.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMArgAction.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArgAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMBlockArgCaller.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBlockArgCaller.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMFunctionsPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctionsPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSBezierPath+RoundedCorners.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSImage+Compatibility.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSImage+Compatibility.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDAnimatedImage.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDAnimatedImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDAsyncBlockOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDDiskCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageAPNGCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageAPNGCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageAPNGCoderInternal.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDImageAPNGCoderInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageAssetManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDImageAssetManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCacheDefine.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheDefine.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCachesManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCachesManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCachesManagerOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCoderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCoderHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCodersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCodersManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageFrame.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageFrame.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageGIFCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageGIFCoderInternal.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDImageGIFCoderInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageGraphics.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageGraphics.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageIOCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageIOCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageLoader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageLoader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageLoadersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageLoadersManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDInternalMacros.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDInternalMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDMemoryCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWeakProxy.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDWeakProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCacheKeyFilter.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCacheKeyFilter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCacheSerializer.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCacheSerializer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDefine.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDefine.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderRequestModifier.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderRequestModifier.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageError.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageIndicator.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageIndicator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDmetamacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIColor+HexString.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/UIColor+HexString.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MemoryCacheCost.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MemoryCacheCost.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+Metadata.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+Metadata.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+Transform.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+Transform.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/NSArray+SentrySanitize.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/NSArray+SentrySanitize.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/NSData+Sentry.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/NSData+Sentry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/NSData+SentryCompression.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/NSData+SentryCompression.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/NSDate+SentryExtras.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/NSDate+SentryExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/NSDictionary+SentrySanitize.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/NSDictionary+SentrySanitize.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/PrivateSentrySDKOnly.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/PrivateSentrySDKOnly.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/Sentry.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/Sentry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryANRTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryANRTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryANRTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryANRTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppStartMeasurement.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryAppStartMeasurement.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppStartTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAppStartTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppStartTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAppStartTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppState.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAppState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAppStateManager.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAppStateManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAsyncSafeLogging.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAsyncSafeLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAsynchronousOperation.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryAsynchronousOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryAttachment.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryAttachment.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBacktrace.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryBacktrace.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBreadcrumb.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryBreadcrumb.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryBreadcrumbTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryBreadcrumbTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryByteCountFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryByteCountFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCPU.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCPU.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryClient+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryClient+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryClient.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryClient.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCompiler.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCompiler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCoreDataSwizzling.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCoreDataSwizzling.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCoreDataTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCoreDataTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCoreDataTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCoreDataTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrash.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrash.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashBinaryImageProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashBinaryImageProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashCPU.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashCPU.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashCPU_Apple.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashCPU_Apple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashCString.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Reporting/Tools/SentryCrashCString.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashCachedData.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashCachedData.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDate.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashDate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDebug.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashDebug.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDoctor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashDoctor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashDynamicLinker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashDynamicLinker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashExceptionApplication.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryCrashExceptionApplication.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashFileUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashFileUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashID.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashID.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashInstallation.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Installations/SentryCrashInstallation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashInstallationReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashInstallationReporter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashIsAppImage.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashIsAppImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashJSONCodec.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashJSONCodec.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashJSONCodecObjC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashJSONCodecObjC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashLogger.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMach.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashMach.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMachineContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMachineContextWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashMachineContextWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMemory.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashMemory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitorContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitorContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitorType.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitorType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_Signal.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_Signal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_System.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_System.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_User.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_User.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashMonitor_Zombie.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_Zombie.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashObjC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashObjC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashObjCApple.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashObjCApple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReport.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashReportConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportFields.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReportFields.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportFilter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Reporting/Filters/SentryCrashReportFilter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportFixer.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReportFixer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportSink.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashReportSink.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportStore.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReportStore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportVersion.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReportVersion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashReportWriter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashReportWriter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashScopeObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashScopeObserver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashSignalInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashSignalInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashStackCursor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashStackEntryMapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashStackEntryMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashString.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashString.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashSymbolicator.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashSymbolicator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashSysCtl.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashSysCtl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashSystemCapabilities.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/SentryCrashSystemCapabilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashThread.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashThread.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashUUIDConversion.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashUUIDConversion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashVarArgs.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Reporting/Filters/Tools/SentryCrashVarArgs.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCrashWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCrashWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCurrentDate.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCurrentDate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryCurrentDateProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryCurrentDateProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDataCategory.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDataCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDataCategoryMapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDataCategoryMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDateUtil.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDateUtil.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDebugImageProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDebugImageProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDebugMeta.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDebugMeta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDefaultCurrentDateProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDefaultCurrentDateProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDefaultObjCRuntimeWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/SentryDefaultObjCRuntimeWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDefaultRateLimits.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDefaultRateLimits.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDependencyContainer.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDependencyContainer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDispatchQueueWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDispatchQueueWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDisplayLinkWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryDisplayLinkWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryDsn.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDsn.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEnvelope.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEnvelope.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEnvelopeItemType.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEnvelopeItemType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEnvelopeRateLimit.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryEnvelopeRateLimit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryError.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryEvent.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryException.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryException.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFileContents.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFileContents.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFileIOTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFileIOTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFileManager.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFileManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFrame.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryFrame.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFrameRemover.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFrameRemover.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFramesTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFramesTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryFramesTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryFramesTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryGlobalEventProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryGlobalEventProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHexAddressFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryHexAddressFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHook.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/SentryHook.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHttpDateParser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryHttpDateParser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHttpTransport.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryHttpTransport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHub+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryHub+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryHub.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryHub.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryId.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryId.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryInAppLogic.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryInAppLogic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryInstallation.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryInstallation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryIntegrationProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryIntegrationProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryInternalNotificationNames.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryInternalNotificationNames.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryLevelMapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryLevelMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryLog.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryLog.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryLogOutput.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryLogOutput.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMachLogging.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryMachLogging.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMechanism.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMechanism.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMechanismMeta.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMechanismMeta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMeta.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryMeta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryMigrateSessionInit.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryMigrateSessionInit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSDataSwizzling.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSDataSwizzling.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSDataTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSDataTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSError.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryNSError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSURLRequest.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSURLRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNSURLSessionTaskSearch.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNSURLSessionTaskSearch.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNetworkTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNetworkTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNetworkTrackingIntegration.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryNetworkTrackingIntegration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryNoOpSpan.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/SentryNoOpSpan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryObjCRuntimeWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryObjCRuntimeWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryOptions+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryOptions+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryOptions.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryOptions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryOutOfMemoryLogic.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryOutOfMemoryLogic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryOutOfMemoryTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryOutOfMemoryTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryPerformanceTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryPerformanceTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfiler.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfiler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfilingConditionals.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryProfilingConditionals.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryProfilingLogging.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryProfilingLogging.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryQueueableRequestManager.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryQueueableRequestManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRandom.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRandom.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRateLimitParser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRateLimitParser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRateLimits.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRateLimits.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRequestManager.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRequestManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryRetryAfterHeaderParser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryRetryAfterHeaderParser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySDK+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySDK+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySDK.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySDK.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySampleDecision.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySampleDecision.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySamplingContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySamplingContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySamplingProfiler.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySamplingProfiler.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScope+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryScope+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScope.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryScope.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScopeObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryScopeObserver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScopeSyncC.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryScopeSyncC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryScreenFrames.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryScreenFrames.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySdkInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySdkInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySerializable.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySerializable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySerialization.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySession+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySession+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySession.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySession.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySessionCrashedHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySessionCrashedHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySessionTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySessionTracker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpan.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySpan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanId.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanId.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySpanStatus.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanStatus.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryStackBounds.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryStackBounds.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryStackFrame.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryStackFrame.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryStacktrace.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryStacktrace.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryStacktraceBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryStacktraceBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySubClassFinder.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/SentrySubClassFinder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySwizzle.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySwizzle.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySysctl.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySysctl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentrySystemEventBreadcrumbs.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentrySystemEventBreadcrumbs.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThread.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryThread.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThreadHandle.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadHandle.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThreadInspector.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadInspector.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThreadMetadataCache.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadMetadataCache.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThreadState.hpp: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadState.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryThreadWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryThreadWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTime.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTraceHeader.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryTraceHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTraceState.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTraceState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTracer.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTracesSampler.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTracesSampler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransaction+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTransaction+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTransaction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransactionContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryTransactionContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransport.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTransport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryTransportFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryTransportFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUIViewControllerSanitizer.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUIViewControllerSanitizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUIViewControllerSwizzling.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/SentryUIViewControllerSwizzling.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryUser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/SentryUserFeedback.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryUserFeedback.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/UIViewController+Sentry.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/include/UIViewController+Sentry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Sentry/fishhook.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/SentryCrash/Recording/Tools/fishhook.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKCoreDataImporter.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKCoreDataImporter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKManagedObjectMapper.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKManagedObjectMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKManagedObjectMapping.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKManagedObjectMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKManagedObjectModel.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKManagedObjectModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKMapper.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKMappingBlocks.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKMappingBlocks.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKMappingProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKMappingProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKObjectMapping.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKObjectMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKObjectModel.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKObjectModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKPropertyHelper.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKPropertyHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKPropertyMapping.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKPropertyMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKRelationshipMapping.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKRelationshipMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EKSerializer.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EKSerializer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/EasyMapping.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/EasyMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EasyMapping/NSArray+FlattenArray.h: -------------------------------------------------------------------------------- 1 | ../../../EasyMapping/Sources/EasyMapping/NSArray+FlattenArray.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Kingfisher/Kingfisher-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kingfisher/Kingfisher.h: -------------------------------------------------------------------------------- 1 | ../../../Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Kingfisher/Kingfisher.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/Mixpanel/Mixpanel.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/Mixpanel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mixpanel/MixpanelGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelGroup.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mixpanel/MixpanelPeople.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelPeople.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Mixpanel/MixpanelType.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Sources/MixpanelType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSImage+Compatibility.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSImage+Compatibility.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDAnimatedImage.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDAnimatedImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDDiskCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageAPNGCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageAPNGCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCacheDefine.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheDefine.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCachesManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCachesManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCoderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCoderHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCodersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCodersManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageFrame.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageFrame.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageGIFCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageGraphics.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageGraphics.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageIOCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageIOCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageLoader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageLoader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageLoadersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageLoadersManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDMemoryCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCacheKeyFilter.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCacheKeyFilter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCacheSerializer.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCacheSerializer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDefine.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDefine.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderRequestModifier.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderRequestModifier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageError.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageError.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageIndicator.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageIndicator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MemoryCacheCost.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MemoryCacheCost.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+Metadata.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+Metadata.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+Transform.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+Transform.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/PrivateSentrySDKOnly.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/PrivateSentrySDKOnly.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/Sentry.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/Sentry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryAppStartMeasurement.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryAppStartMeasurement.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryAttachment.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryAttachment.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryBreadcrumb.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryBreadcrumb.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryClient.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryClient.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryCrashExceptionApplication.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryCrashExceptionApplication.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryDebugImageProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDebugImageProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryDebugMeta.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDebugMeta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryDsn.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryDsn.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryEnvelope.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEnvelope.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryEnvelopeItemType.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEnvelopeItemType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryError.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryError.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryEvent.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryException.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryException.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryFrame.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryFrame.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryHub.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryHub.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryId.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryId.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryIntegrationProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryIntegrationProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryMechanism.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMechanism.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryMechanismMeta.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMechanismMeta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryNSError.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryNSError.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryOptions.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryOptions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryProfilingConditionals.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryProfilingConditionals.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySDK.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySDK.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySampleDecision.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySampleDecision.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySamplingContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySamplingContext.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryScope.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryScope.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryScreenFrames.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryScreenFrames.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySdkInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySdkInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySerializable.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySerializable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySession.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySession.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySpanContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanContext.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySpanId.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanId.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySpanProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentrySpanStatus.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentrySpanStatus.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryStacktrace.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryStacktrace.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryThread.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryThread.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryTraceHeader.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryTraceHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryTransactionContext.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryTransactionContext.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryUser.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sentry/SentryUserFeedback.h: -------------------------------------------------------------------------------- 1 | ../../../Sentry/Sources/Sentry/Public/SentryUserFeedback.h -------------------------------------------------------------------------------- /Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Kingfisher/Sources/Cache/Storage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Kingfisher/Sources/Image/Filter.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Kingfisher/Sources/Image/Image.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Kingfisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Kingfisher/Sources/Utility/Box.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Kingfisher/Sources/Utility/Result.swift -------------------------------------------------------------------------------- /Pods/Local Podspecs/Sentry.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Local Podspecs/Sentry.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Mixpanel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/LICENSE -------------------------------------------------------------------------------- /Pods/Mixpanel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/README.md -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/AutomaticEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/AutomaticEvents.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/AutomaticEvents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/AutomaticEvents.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MPDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MPDB.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MPDB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MPDB.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MPFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MPFoundation.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MPJSONHander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MPJSONHander.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MPJSONHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MPJSONHandler.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MPLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MPLogger.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MPLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MPLogger.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MPNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MPNetwork.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MPNetwork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MPNetwork.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MPNetworkPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MPNetworkPrivate.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/Mixpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/Mixpanel.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/Mixpanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/Mixpanel.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelGroup.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelGroup.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelGroupPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelGroupPrivate.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelIdentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelIdentity.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelIdentity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelIdentity.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelPeople.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelPeople.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelPeople.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelPeople.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelPersistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelPersistence.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelPersistence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelPersistence.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelPrivate.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelType.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/MixpanelType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/MixpanelType.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/SessionMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/SessionMetadata.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Sources/SessionMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Mixpanel/Sources/SessionMetadata.m -------------------------------------------------------------------------------- /Pods/OCMock/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/License.txt -------------------------------------------------------------------------------- /Pods/OCMock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/README.md -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMArg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMArg.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMArgAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMArgAction.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMArgAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMArgAction.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMBlockCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMBlockCaller.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMConstraint.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMFunctions.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMLocation.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMMacroState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMMacroState.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMRecorder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMStubRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMStubRecorder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMVerifier.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/OCMock/Source/OCMock/OCMockObject.m -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDAnimatedImage.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDAnimatedImage.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDDiskCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDDiskCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageFrame.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageFrame.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageGIFCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageGraphics.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageGraphics.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageIOCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageIOCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageLoader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDImageLoader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDMemoryCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDMemoryCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageError.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageError.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/WebImage/SDWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /Pods/Sentry/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/LICENSE.md -------------------------------------------------------------------------------- /Pods/Sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/README.md -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/NSData+Sentry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/NSData+Sentry.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/Public/Sentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/Public/Sentry.h -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/Public/SentryId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/Public/SentryId.h -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryAppState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryAppState.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryClient.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryDateUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryDateUtil.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryDebugMeta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryDebugMeta.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryDsn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryDsn.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryEnvelope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryEnvelope.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryError.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryEvent.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryException.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryFrame.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryHub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryHub.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryId.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryLog.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryLogOutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryLogOutput.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryMechanism.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryMechanism.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryMessage.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryMeta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryMeta.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryNSError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryNSError.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryNoOpSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryNoOpSpan.h -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryNoOpSpan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryNoOpSpan.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryOptions.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryProfiler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryProfiler.mm -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryRandom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryRandom.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentrySDK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentrySDK.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryScope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryScope.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentrySdkInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentrySdkInfo.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentrySession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentrySession.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentrySpan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentrySpan.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentrySpanId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentrySpanId.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentrySwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentrySwizzle.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentrySysctl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentrySysctl.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryThread.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryTime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryTime.mm -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryTracer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryTracer.m -------------------------------------------------------------------------------- /Pods/Sentry/Sources/Sentry/SentryUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/Pods/Sentry/Sources/Sentry/SentryUser.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/_config.yml -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/icon.png -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deszip/BitBot/HEAD/screenshot-3.png --------------------------------------------------------------------------------