├── .buildkite ├── block.full.yml ├── pipeline.full.yml ├── pipeline.yml └── pipeline_trigger.sh ├── .clang-format ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── A.md │ ├── Bug_report.md │ └── Feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md ├── dependabot.yml └── workflows │ ├── downstream_updates.yml │ ├── pull_request.yml │ ├── scorecard.yml │ ├── signing.yml │ └── update_docs.yml ├── .gitignore ├── .inferconfig ├── .jazzy.yaml ├── .oclint ├── BUGSNAG-PLUGIN.md ├── Bugsnag.podspec.json ├── Bugsnag.xcconfig ├── Bugsnag.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ ├── xcbaselines │ ├── 00AD1C7A24869B0E00A27979.xcbaseline │ │ ├── AAE3C352-6D5A-468D-8448-CC2EA52E7868.plist │ │ ├── B9A70F85-2A05-489B-A5BA-1129C478B0A1.plist │ │ ├── D90C8D39-16DA-4CCB-8283-66F4A3B10BA2.plist │ │ └── Info.plist │ └── 00AD1CB424869C1200A27979.xcbaseline │ │ ├── 7E1A1286-DD8C-4E45-9E88-4335CD976176.plist │ │ └── Info.plist │ └── xcschemes │ ├── Bugsnag-iOS.xcscheme │ ├── Bugsnag-macOS.xcscheme │ ├── Bugsnag-tvOS.xcscheme │ ├── Bugsnag-watchOS.xcscheme │ └── BugsnagStatic.xcscheme ├── Bugsnag.xcworkspace └── contents.xcworkspacedata ├── Bugsnag ├── BSGCrashSentry.h ├── BSGCrashSentry.m ├── Breadcrumbs │ ├── BSGNetworkBreadcrumb.h │ ├── BSGNetworkBreadcrumb.m │ ├── BSGNotificationBreadcrumbs.h │ ├── BSGNotificationBreadcrumbs.m │ ├── BugsnagBreadcrumbs.h │ └── BugsnagBreadcrumbs.m ├── Bugsnag+Private.h ├── Bugsnag.m ├── BugsnagFeatureFlag.m ├── BugsnagInternals.h ├── BugsnagLastRunInfo+Private.h ├── BugsnagLastRunInfo.m ├── BugsnagSessionTracker.h ├── BugsnagSessionTracker.m ├── BugsnagSystemState.h ├── BugsnagSystemState.m ├── Client │ ├── BugsnagClient+Private.h │ └── BugsnagClient.m ├── Configuration │ ├── BSGConfigurationBuilder.h │ ├── BSGConfigurationBuilder.m │ ├── BugsnagConfiguration+Private.h │ ├── BugsnagConfiguration.m │ ├── BugsnagEndpointConfiguration.m │ └── BugsnagErrorTypes.m ├── Delivery │ ├── BSGConnectivity.h │ ├── BSGConnectivity.m │ ├── BSGEventUploadFileOperation.h │ ├── BSGEventUploadFileOperation.m │ ├── BSGEventUploadKSCrashReportOperation.h │ ├── BSGEventUploadKSCrashReportOperation.m │ ├── BSGEventUploadObjectOperation.h │ ├── BSGEventUploadObjectOperation.m │ ├── BSGEventUploadOperation.h │ ├── BSGEventUploadOperation.m │ ├── BSGEventUploader.h │ ├── BSGEventUploader.m │ ├── BSGSessionUploader.h │ ├── BSGSessionUploader.m │ ├── BugsnagApiClient.h │ └── BugsnagApiClient.m ├── FeatureFlags │ ├── BSGAtomicFeatureFlagStore.h │ ├── BSGAtomicFeatureFlagStore.m │ ├── BSGCompositeFeatureFlagStore.h │ ├── BSGCompositeFeatureFlagStore.m │ ├── BSGFeatureFlagStore.h │ ├── BSGMemoryFeatureFlagStore.h │ ├── BSGMemoryFeatureFlagStore.m │ ├── BSGPersistentFeatureFlagStore.h │ ├── BSGPersistentFeatureFlagStore.m │ ├── BSGStoredFeatureFlag.h │ └── BSGStoredFeatureFlag.m ├── Helpers │ ├── BSGAppHangDetector.h │ ├── BSGAppHangDetector.m │ ├── BSGAppKit.h │ ├── BSGDefines.h │ ├── BSGFilesystem.h │ ├── BSGFilesystem.m │ ├── BSGGlobals.h │ ├── BSGGlobals.m │ ├── BSGHardware.h │ ├── BSGInternalErrorReporter.h │ ├── BSGInternalErrorReporter.m │ ├── BSGJSONSerialization.h │ ├── BSGJSONSerialization.m │ ├── BSGKeys.h │ ├── BSGRunContext.h │ ├── BSGRunContext.m │ ├── BSGSerialization.h │ ├── BSGSerialization.m │ ├── BSGTelemetry.h │ ├── BSGTelemetry.m │ ├── BSGUIKit.h │ ├── BSGUtils.h │ ├── BSGUtils.m │ ├── BSGWatchKit.h │ ├── BSG_RFC3339DateTool.h │ ├── BSG_RFC3339DateTool.m │ ├── BugsnagCocoaPerformanceFromBugsnagCocoa.h │ ├── BugsnagCocoaPerformanceFromBugsnagCocoa.m │ ├── BugsnagCollections.h │ ├── BugsnagCollections.m │ ├── BugsnagLogger.h │ ├── MRCCanary.m │ └── stb_sprintf.h ├── KSCrash │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── KSCrash │ │ ├── Recording │ │ ├── BSG_Jailbreak.h │ │ ├── BSG_KSCrash.h │ │ ├── BSG_KSCrash.m │ │ ├── BSG_KSCrashC.c │ │ ├── BSG_KSCrashC.h │ │ ├── BSG_KSCrashContext.h │ │ ├── BSG_KSCrashDoctor.h │ │ ├── BSG_KSCrashDoctor.m │ │ ├── BSG_KSCrashIdentifier.h │ │ ├── BSG_KSCrashIdentifier.m │ │ ├── BSG_KSCrashNames.c │ │ ├── BSG_KSCrashNames.h │ │ ├── BSG_KSCrashReport.c │ │ ├── BSG_KSCrashReport.h │ │ ├── BSG_KSCrashReportFields.h │ │ ├── BSG_KSCrashReportVersion.h │ │ ├── BSG_KSCrashState.h │ │ ├── BSG_KSCrashState.m │ │ ├── BSG_KSCrashType.h │ │ ├── BSG_KSFile.c │ │ ├── BSG_KSFile.h │ │ ├── BSG_KSPlatformSpecificDefines.h │ │ ├── BSG_KSSystemInfo.h │ │ ├── BSG_KSSystemInfo.m │ │ ├── BSG_KSSystemInfoC.h │ │ ├── Sentry │ │ │ ├── BSG_KSCrashSentry.c │ │ │ ├── BSG_KSCrashSentry.h │ │ │ ├── BSG_KSCrashSentry_CPPException.h │ │ │ ├── BSG_KSCrashSentry_CPPException.mm │ │ │ ├── BSG_KSCrashSentry_MachException.c │ │ │ ├── BSG_KSCrashSentry_MachException.h │ │ │ ├── BSG_KSCrashSentry_NSException.h │ │ │ ├── BSG_KSCrashSentry_NSException.m │ │ │ ├── BSG_KSCrashSentry_Private.h │ │ │ ├── BSG_KSCrashSentry_Signal.c │ │ │ └── BSG_KSCrashSentry_Signal.h │ │ └── Tools │ │ │ ├── BSG_KSArchSpecific.h │ │ │ ├── BSG_KSBacktrace.c │ │ │ ├── BSG_KSBacktrace.h │ │ │ ├── BSG_KSBacktrace_Private.h │ │ │ ├── BSG_KSCrashStringConversion.c │ │ │ ├── BSG_KSCrashStringConversion.h │ │ │ ├── BSG_KSCxaThrowSwapper.c │ │ │ ├── BSG_KSCxaThrowSwapper.h │ │ │ ├── BSG_KSFileUtils.c │ │ │ ├── BSG_KSFileUtils.h │ │ │ ├── BSG_KSJSONCodec.c │ │ │ ├── BSG_KSJSONCodec.h │ │ │ ├── BSG_KSLogger.c │ │ │ ├── BSG_KSLogger.h │ │ │ ├── BSG_KSMach-O.c │ │ │ ├── BSG_KSMach-O.h │ │ │ ├── BSG_KSMach.c │ │ │ ├── BSG_KSMach.h │ │ │ ├── BSG_KSMachApple.h │ │ │ ├── BSG_KSMachHeaders.c │ │ │ ├── BSG_KSMachHeaders.h │ │ │ ├── BSG_KSMach_Arm.c │ │ │ ├── BSG_KSMach_Arm64.c │ │ │ ├── BSG_KSMach_x86_32.c │ │ │ ├── BSG_KSMach_x86_64.c │ │ │ ├── BSG_KSSignalInfo.c │ │ │ ├── BSG_KSSignalInfo.h │ │ │ ├── BSG_KSString.c │ │ │ ├── BSG_KSString.h │ │ │ ├── BSG_KSSysCtl.c │ │ │ ├── BSG_KSSysCtl.h │ │ │ ├── BSG_Symbolicate.c │ │ │ └── BSG_Symbolicate.h │ │ └── Reporting │ │ └── Filters │ │ └── BSGOnErrorSentBlock.h ├── Metadata │ ├── BugsnagMetadata+Private.h │ └── BugsnagMetadata.m ├── Payload │ ├── BugsnagApp+Private.h │ ├── BugsnagApp.m │ ├── BugsnagAppWithState+Private.h │ ├── BugsnagAppWithState.m │ ├── BugsnagBreadcrumb+Private.h │ ├── BugsnagBreadcrumb.m │ ├── BugsnagCorrelation.h │ ├── BugsnagCorrelation.m │ ├── BugsnagDevice+Private.h │ ├── BugsnagDevice.m │ ├── BugsnagDeviceWithState+Private.h │ ├── BugsnagDeviceWithState.m │ ├── BugsnagError+Private.h │ ├── BugsnagError.m │ ├── BugsnagEvent+Private.h │ ├── BugsnagEvent.m │ ├── BugsnagHandledState.h │ ├── BugsnagHandledState.m │ ├── BugsnagNotifier.h │ ├── BugsnagNotifier.m │ ├── BugsnagSession+Private.h │ ├── BugsnagSession.m │ ├── BugsnagStackframe+Private.h │ ├── BugsnagStackframe.m │ ├── BugsnagStacktrace.h │ ├── BugsnagStacktrace.m │ ├── BugsnagThread+Private.h │ ├── BugsnagThread.m │ ├── BugsnagUser+Private.h │ └── BugsnagUser.m ├── Storage │ ├── BSGFileLocations.h │ ├── BSGFileLocations.m │ ├── BSGPersistentDeviceID.h │ ├── BSGPersistentDeviceID.m │ ├── BSGStorageMigratorV0V1.h │ └── BSGStorageMigratorV0V1.m ├── include │ └── Bugsnag │ │ ├── BSG_KSCrashReportWriter.h │ │ ├── Bugsnag.h │ │ ├── BugsnagApp.h │ │ ├── BugsnagAppWithState.h │ │ ├── BugsnagBreadcrumb.h │ │ ├── BugsnagClient.h │ │ ├── BugsnagConfiguration.h │ │ ├── BugsnagDefines.h │ │ ├── BugsnagDevice.h │ │ ├── BugsnagDeviceWithState.h │ │ ├── BugsnagEndpointConfiguration.h │ │ ├── BugsnagError.h │ │ ├── BugsnagErrorTypes.h │ │ ├── BugsnagEvent.h │ │ ├── BugsnagFeatureFlag.h │ │ ├── BugsnagFeatureFlagStore.h │ │ ├── BugsnagLastRunInfo.h │ │ ├── BugsnagMetadata.h │ │ ├── BugsnagMetadataStore.h │ │ ├── BugsnagPlugin.h │ │ ├── BugsnagSession.h │ │ ├── BugsnagStackframe.h │ │ ├── BugsnagThread.h │ │ └── BugsnagUser.h └── resources │ └── PrivacyInfo.xcprivacy ├── BugsnagNetworkRequestPlugin.podspec.json ├── BugsnagNetworkRequestPlugin ├── BugsnagNetworkRequestPlugin.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── BugsnagNetworkRequestPlugin-iOS.xcscheme │ │ ├── BugsnagNetworkRequestPlugin-macOS.xcscheme │ │ ├── BugsnagNetworkRequestPlugin-tvOS.xcscheme │ │ └── BugsnagNetworkRequestPlugin-watchOS.xcscheme ├── BugsnagNetworkRequestPlugin │ ├── BSGURLSessionTracingDelegate.h │ ├── BSGURLSessionTracingDelegate.m │ ├── BSGURLSessionTracingProxy.h │ ├── BSGURLSessionTracingProxy.m │ ├── BugsnagNetworkRequestPlugin.m │ ├── Info.plist │ ├── NSURLSession+Tracing.h │ ├── NSURLSession+Tracing.m │ └── include │ │ └── BugsnagNetworkRequestPlugin │ │ └── BugsnagNetworkRequestPlugin.h ├── BugsnagNetworkRequestPluginTests │ ├── BSGURLSessionTracingProxyTests.m │ ├── BugsnagNetworkRequestPluginTests.m │ └── Info.plist └── README.md ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Dangerfile ├── Framework ├── Info.plist └── module.modulemap ├── Gemfile ├── LICENSE.txt ├── Makefile ├── ORGANIZATION.md ├── Package.swift ├── README.md ├── SECURITY.md ├── TESTING.md ├── Tests ├── BugsnagTests │ ├── BSGAppKitTests.m │ ├── BSGAtomicFeatureFlagStoreTests.m │ ├── BSGClientObserverTests.m │ ├── BSGConfigurationBuilderTests.m │ ├── BSGConnectivityTest.m │ ├── BSGDefinesTests.m │ ├── BSGEventUploadKSCrashReportOperationTests.m │ ├── BSGInternalErrorReporterTests.m │ ├── BSGJSONSerializationTests.m │ ├── BSGMemoryFeatureFlagStoreTests.m │ ├── BSGNetworkBreadcrumbTests.m │ ├── BSGNotificationBreadcrumbsTests.m │ ├── BSGOutOfMemoryTests.m │ ├── BSGPersistentDeviceIDTests.m │ ├── BSGRunContextTests.m │ ├── BSGSerializationTests.m │ ├── BSGStorageMigratorV0V1Tests.m │ ├── BSGTelemetryTests.m │ ├── BSGTestCase.h │ ├── BSGTestCase.mm │ ├── BSGUtilsTests.m │ ├── BugsnagApiClientTest.m │ ├── BugsnagApiValidationTest.m │ ├── BugsnagAppTest.m │ ├── BugsnagBreadcrumbsTest.m │ ├── BugsnagClientMirrorTest.m │ ├── BugsnagClientPayloadInfoTest.m │ ├── BugsnagClientTests.m │ ├── BugsnagCollectionsTests.m │ ├── BugsnagConfigurationTests.m │ ├── BugsnagDeviceTest.m │ ├── BugsnagEnabledBreadcrumbTest.m │ ├── BugsnagErrorTest.m │ ├── BugsnagEventFromKSCrashReportTest.m │ ├── BugsnagEventPersistLoadTest.m │ ├── BugsnagEventTests.m │ ├── BugsnagHandledStateTest.m │ ├── BugsnagMetadataRedactionTest.m │ ├── BugsnagMetadataTests.m │ ├── BugsnagNotifierTest.m │ ├── BugsnagOnBreadcrumbTest.m │ ├── BugsnagOnCrashTest.m │ ├── BugsnagPerformanceBridgeTests.m │ ├── BugsnagPluginTest.m │ ├── BugsnagSessionTest.m │ ├── BugsnagSessionTrackerStopTest.m │ ├── BugsnagSessionTrackerTest.m │ ├── BugsnagStackframeTest.m │ ├── BugsnagStacktraceTest.m │ ├── BugsnagSwiftConfigurationTests.swift │ ├── BugsnagSwiftPublicAPITests.swift │ ├── BugsnagSwiftTests.swift │ ├── BugsnagTestConstants.h │ ├── BugsnagTests.m │ ├── BugsnagTestsDummyClass.h │ ├── BugsnagTestsDummyClass.m │ ├── BugsnagThreadSerializationTest.m │ ├── BugsnagThreadTests.m │ ├── BugsnagUserTest.m │ ├── ClientApiValidationTest.m │ ├── ConfigurationApiValidationTest.m │ ├── Data │ │ ├── BugsnagEvents │ │ │ └── BugsnagEvent1.json │ │ ├── KSCrashReport1.json │ │ └── RecrashReport.json │ ├── EventApiValidationTest.m │ ├── FileBasedTest.h │ ├── FileBasedTest.m │ ├── Info.plist │ ├── Swizzle.h │ ├── Swizzle.mm │ ├── TestSupport.h │ ├── TestSupport.m │ ├── Tests-Bridging-Header.h │ ├── UIApplicationStub.h │ ├── UIApplicationStub.m │ ├── UIKitTests.m │ ├── UISceneStub.h │ ├── UISceneStub.m │ ├── URLSessionMock.h │ ├── URLSessionMock.m │ ├── WriterTestsSupport.h │ ├── WriterTestsSupport.m │ ├── report-react-native-promise-rejection.json │ ├── report.json │ └── v0_files │ │ └── Caches │ │ ├── KSCrashReports │ │ └── xctest │ │ │ └── Bugsnag Test App-CrashState.json │ │ ├── Sessions │ │ └── xctest │ │ │ └── .placeholder │ │ ├── bsg_kvstore │ │ ├── debuggerIsActive │ │ ├── inForeground │ │ └── isActive │ │ ├── bugsnag │ │ ├── breadcrumbs │ │ │ ├── 0.json │ │ │ └── 1.json │ │ ├── config.json │ │ ├── metadata.json │ │ ├── state.json │ │ └── state │ │ │ └── system_state.json │ │ └── bugsnag_handled_crash.txt ├── KSCrashTests │ ├── BSG_KSCrashReportTests.m │ ├── BSG_KSCrashStringConversionTest.m │ ├── BSG_KSFileTests.m │ ├── BSG_KSMachHeadersTests.m │ ├── BSG_KSMachTests.m │ ├── FileBasedTestCase.h │ ├── FileBasedTestCase.m │ ├── KSCrashNames_Test.m │ ├── KSCrashReportWriterTests.m │ ├── KSCrashSentry_NSException_Tests.m │ ├── KSCrashSentry_Signal_Tests.m │ ├── KSCrashSentry_Tests.m │ ├── KSCrashState_Tests.m │ ├── KSFileUtils_Tests.m │ ├── KSJSONCodec_Tests.m │ ├── KSLogger_Tests.m │ ├── KSSignalInfo_Tests.m │ ├── KSSysCtl_Tests.m │ ├── KSSystemInfo_Tests.m │ ├── RFC3339DateTool_Tests.m │ ├── XCTestCase+KSCrash.h │ └── XCTestCase+KSCrash.m └── TestHost-iOS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── main.m ├── UPGRADING.md ├── VERSION ├── docker-compose.yml ├── dyms.rb ├── examples ├── objective-c-ios │ ├── Podfile │ ├── README.md │ ├── objective-c-ios.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── objective-c-ios.xcscheme │ ├── objective-c-ios.xcworkspace │ │ └── contents.xcworkspacedata │ └── objective-c-ios │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ └── Contents.json │ │ ├── CxxException.h │ │ ├── CxxException.mm │ │ ├── Info.plist │ │ ├── OutOfMemoryController.h │ │ ├── OutOfMemoryController.m │ │ ├── SceneDelegate.h │ │ ├── SceneDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ └── main.m ├── objective-c-osx │ ├── Podfile │ ├── README.md │ ├── objective-c-osx.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── objective-c-osx.xcscheme │ ├── objective-c-osx.xcworkspace │ │ └── contents.xcworkspacedata │ └── objective-c-osx │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── CustomApplication.h │ │ ├── CustomApplication.m │ │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── swift-ios │ ├── Podfile │ ├── README.md │ ├── swift-ios.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── swift-ios.xcscheme │ ├── swift-ios.xcworkspace │ │ └── contents.xcworkspacedata │ └── swift-ios │ │ ├── AnObjCClass.h │ │ ├── AnObjCClass.mm │ │ ├── AnotherClass.swift │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── OutOfMemoryController.h │ │ ├── OutOfMemoryController.m │ │ ├── SceneDelegate.swift │ │ ├── ViewController.swift │ │ └── swift-ios-Bridging-Header.h ├── swift-package-manager │ ├── swift-package-manager.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── swift-package-manager.xcscheme │ └── swift-package-manager │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── OutOfMemoryController.h │ │ ├── OutOfMemoryController.m │ │ ├── SceneDelegate.swift │ │ ├── ViewController.swift │ │ └── swift-package-manager-Bridging-Header.h ├── swift-watchos │ ├── Podfile │ ├── swift-watchos WatchKit App │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Watch38MM42MMHomeScreen.png │ │ │ │ ├── Watch38MMShortLook.png │ │ │ │ ├── Watch38mmNotificationCenter.png │ │ │ │ ├── Watch40MM42MMShortLook.png │ │ │ │ ├── Watch40MMHomeScreen.png │ │ │ │ ├── Watch42mmNotificationCenter.png │ │ │ │ ├── Watch44MMHomeScreen.png │ │ │ │ ├── Watch44MMShortLook.png │ │ │ │ ├── WatchAppStore.png │ │ │ │ ├── WatchCompanionSettings@2x.png │ │ │ │ └── WatchCompanionSettings@3x.png │ │ │ └── Contents.json │ │ └── Base.lproj │ │ │ └── Interface.storyboard │ ├── swift-watchos WatchKit Extension │ │ ├── AnObjCClass.h │ │ ├── AnObjCClass.mm │ │ ├── Assets.xcassets │ │ │ ├── Complication.complicationset │ │ │ │ ├── Circular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Extra Large.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Bezel.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Circular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Corner.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Extra Large.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Large Rectangular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Modular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Utilitarian.imageset │ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ComplicationController.swift │ │ ├── ExtensionDelegate.swift │ │ ├── Info.plist │ │ ├── InterfaceController.swift │ │ └── swift-watchos WatchKit Extension-Bridging-Header.h │ ├── swift-watchos.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── swift-watchos WatchKit App.xcscheme │ └── swift-watchos.xcworkspace │ │ └── contents.xcworkspacedata └── swiftui │ ├── Shared │ ├── AnObjCClass.h │ ├── AnObjCClass.mm │ ├── AppMain.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ └── Contents.json │ ├── Bridging-Header.h │ ├── ContentView.swift │ └── Examples.swift │ ├── iOS │ ├── Info.plist │ ├── OutOfMemoryController.h │ ├── OutOfMemoryController.m │ └── OutOfMemoryPresenter.swift │ ├── macOS │ ├── Info.plist │ └── macOS.entitlements │ ├── swiftui.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── swiftui (iOS).xcscheme │ │ ├── swiftui (macOS).xcscheme │ │ └── swiftui (tvOS).xcscheme │ └── tvOS │ └── Info.plist ├── features ├── app_hangs.feature ├── debug │ ├── crashprobe.feature │ ├── cross_notifier_notify.feature │ ├── handled_errors.feature │ └── unhandled_nsexception.feature ├── fixtures │ ├── docs │ │ ├── background_for_0_sec.html │ │ ├── background_for_1_sec.html │ │ ├── background_for_2_sec.html │ │ ├── background_for_3_sec.html │ │ ├── background_for_4_sec.html │ │ ├── background_for_5_sec.html │ │ └── background_forever.html │ ├── ios │ │ ├── .gitignore │ │ ├── exportOptions.plist │ │ ├── iOSTestApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── iOSTestApp.xcscheme │ │ ├── iOSTestApp.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── iOSTestApp │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ ├── iOSTestAppXcFramework.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── iOSTestAppXcFramework.xcscheme │ │ └── iOSTestAppXcFramework.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ ├── macos-stress-test │ │ ├── BugsnagStressTest.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BugsnagStressTest.xcscheme │ │ ├── BugsnagStressTest.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── BugsnagStressTest │ │ │ └── main.m │ │ ├── Makefile │ │ ├── Podfile │ │ └── run.sh │ ├── macos │ │ ├── .gitignore │ │ ├── exportOptions.plist │ │ ├── macOSTestApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── macOSTestApp.xcscheme │ │ ├── macOSTestApp.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── macOSTestApp │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── MainWindowController.h │ │ │ ├── MainWindowController.m │ │ │ ├── MainWindowController.xib │ │ │ └── main.m │ │ ├── macOSTestAppXcFramework.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── macOSTestAppXcFramework │ │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── macOSTestAppXcFramework.entitlements │ ├── shared │ │ ├── Bridge_InternalAPI.h │ │ ├── Bridge_PublicAPI.h │ │ ├── scenarios │ │ │ ├── .gitignore │ │ │ ├── AbortOverrideScenario.m │ │ │ ├── AbortScenario.m │ │ │ ├── AccessNonObjectScenario.m │ │ │ ├── AppAndDeviceAttributesCallbackOverrideScenario.swift │ │ │ ├── AppAndDeviceAttributesConfigOverrideScenario.swift │ │ │ ├── AppAndDeviceAttributesInfiniteLaunchDurationScenario.swift │ │ │ ├── AppAndDeviceAttributesScenario.swift │ │ │ ├── AppAndDeviceAttributesStartWithApiKeyScenario.swift │ │ │ ├── AppAndDeviceAttributesUnhandledExceptionAfterLaunchScenario.swift │ │ │ ├── AppAndDeviceAttributesUnhandledExceptionDuringLaunchScenario.swift │ │ │ ├── AppDurationScenario.swift │ │ │ ├── AppHangDefaultConfigScenario.swift │ │ │ ├── AppHangDidBecomeActiveScenario.swift │ │ │ ├── AppHangDidEnterBackgroundScenario.swift │ │ │ ├── AppHangDisabledScenario.swift │ │ │ ├── AppHangFatalDisabledScenario.swift │ │ │ ├── AppHangFatalOnlyScenario.swift │ │ │ ├── AppHangInTerminationScenario.swift │ │ │ ├── AppHangScenario.swift │ │ │ ├── AsyncSafeMallocScenario.m │ │ │ ├── AsyncSafeThreadScenario.m │ │ │ ├── AttemptDeliveryOnCrashScenario.swift │ │ │ ├── AutoCaptureRunScenario.m │ │ │ ├── AutoContextNSErrorScenario.swift │ │ │ ├── AutoContextNSExceptionScenario.swift │ │ │ ├── AutoDetectFalseAbortScenario.swift │ │ │ ├── AutoDetectFalseHandledScenario.swift │ │ │ ├── AutoDetectFalseNSExceptionScenario.swift │ │ │ ├── AutoSessionCustomVersionScenario.m │ │ │ ├── AutoSessionHandledEventsScenario.m │ │ │ ├── AutoSessionMixedEventsScenario.m │ │ │ ├── AutoSessionScenario.m │ │ │ ├── AutoSessionUnhandledScenario.m │ │ │ ├── AutoSessionWithUserScenario.m │ │ │ ├── BareboneTestHandledScenario.swift │ │ │ ├── BareboneTestUnhandledErrorScenario.swift │ │ │ ├── BreadcrumbCallbackCrashScenario.swift │ │ │ ├── BreadcrumbCallbackDiscardScenario.swift │ │ │ ├── BreadcrumbCallbackOrderScenario.swift │ │ │ ├── BreadcrumbCallbackOverrideScenario.swift │ │ │ ├── BreadcrumbCallbackRemovalScenario.m │ │ │ ├── BuiltinTrapScenario.m │ │ │ ├── ConcurrentCrashesScenario.mm │ │ │ ├── CouldNotCreateDirectoryScenario.swift │ │ │ ├── CriticalThermalStateScenario.swift │ │ │ ├── CustomPluginNotifierDescriptionScenario.m │ │ │ ├── CxxBareThrowScenario.mm │ │ │ ├── CxxExceptionOverrideScenario.mm │ │ │ ├── CxxExceptionScenario.mm │ │ │ ├── DelayedNotifyErrorScenario.swift │ │ │ ├── DisableAllExceptManualExceptionsAndCrashScenario.m │ │ │ ├── DisableMachExceptionScenario.m │ │ │ ├── DisableNSExceptionScenario.m │ │ │ ├── DisableSignalsExceptionScenario.m │ │ │ ├── DisabledReleaseStageAutoSessionScenario.swift │ │ │ ├── DisabledReleaseStageManualSessionScenario.swift │ │ │ ├── DisabledSessionTrackingScenario.m │ │ │ ├── DiscardClassesHandledExceptionRegexScenario.swift │ │ │ ├── DiscardClassesUnhandledCrashScenario.swift │ │ │ ├── DiscardClassesUnhandledExceptionScenario.swift │ │ │ ├── DiscardedBreadcrumbTypeScenario.swift │ │ │ ├── DispatchCrashScenario.swift │ │ │ ├── EnabledBreadcrumbTypesIsNilScenario.swift │ │ │ ├── EnabledErrorTypesCxxScenario.mm │ │ │ ├── EnabledReleaseStageAutoSessionScenario.swift │ │ │ ├── EnabledReleaseStageManualSessionScenario.swift │ │ │ ├── HandledErrorInvalidReleaseStageScenario.swift │ │ │ ├── HandledErrorOverrideScenario.swift │ │ │ ├── HandledErrorScenario.swift │ │ │ ├── HandledErrorThreadSendAlwaysScenario.m │ │ │ ├── HandledErrorThreadSendUnhandledOnlyScenario.m │ │ │ ├── HandledErrorValidReleaseStageScenario.swift │ │ │ ├── HandledExceptionScenario.swift │ │ │ ├── HandledInternalNotifyScenario.swift │ │ │ ├── InternalWorkingsScenario.swift │ │ │ ├── InvalidCrashReportScenario.m │ │ │ ├── LastRunInfoScenario.swift │ │ │ ├── LoadConfigFromFileAutoScenario.swift │ │ │ ├── LoadConfigFromFileScenario.swift │ │ │ ├── ManualContextClientScenario.swift │ │ │ ├── ManualContextConfigurationScenario.swift │ │ │ ├── ManualContextOnErrorScenario.swift │ │ │ ├── ManualSessionScenario.m │ │ │ ├── ManualSessionWithUserScenario.m │ │ │ ├── ManyConcurrentNotifyScenario.m │ │ │ ├── MarkUnhandledHandledScenario.h │ │ │ ├── MarkUnhandledHandledScenario.m │ │ │ ├── MaxPersistedSessionsScenario.m │ │ │ ├── MetadataMergeScenario.swift │ │ │ ├── MetadataRedactionDefaultScenario.swift │ │ │ ├── MetadataRedactionNestedScenario.swift │ │ │ ├── MetadataRedactionRegexScenario.swift │ │ │ ├── ModifyBreadcrumbInNotifyScenario.swift │ │ │ ├── ModifyBreadcrumbScenario.swift │ │ │ ├── NSExceptionShiftScenario.m │ │ │ ├── NetworkBreadcrumbsScenario.swift │ │ │ ├── NewSessionScenario.swift │ │ │ ├── NonExistentMethodScenario.m │ │ │ ├── NotifyCallbackCrashScenario.swift │ │ │ ├── NullPointerScenario.m │ │ │ ├── OOMAutoDetectErrorsScenario.swift │ │ │ ├── OOMEnabledErrorTypesScenario.swift │ │ │ ├── OOMInactiveScenario.swift │ │ │ ├── OOMLoadScenario.swift │ │ │ ├── OOMScenario.m │ │ │ ├── OOMSessionScenario.swift │ │ │ ├── OOMSessionlessScenario.m │ │ │ ├── OOMWillTerminateScenario.m │ │ │ ├── ObjCExceptionFeatureFlagsScenario.m │ │ │ ├── ObjCExceptionOverrideScenario.m │ │ │ ├── ObjCExceptionScenario.m │ │ │ ├── ObjCMsgSendScenario.m │ │ │ ├── OldCrashReportScenario.swift │ │ │ ├── OldHandledErrorScenario.swift │ │ │ ├── OldSessionScenario.m │ │ │ ├── OnCrashHandlerScenario.m │ │ │ ├── OnErrorOverwriteScenario.swift │ │ │ ├── OnErrorOverwriteUnhandledFalseScenario.swift │ │ │ ├── OnErrorOverwriteUnhandledTrueScenario.swift │ │ │ ├── OnSendCallbackOrderScenario.swift │ │ │ ├── OnSendCallbackRemovalScenario.m │ │ │ ├── OnSendErrorCallbackCrashScenario.swift │ │ │ ├── OnSendErrorCallbackFeatureFlagsScenario.swift │ │ │ ├── OnSendErrorPersistenceScenario.m │ │ │ ├── OnSendOverwriteScenario.swift │ │ │ ├── OriginalErrorNSErrorScenario.swift │ │ │ ├── OriginalErrorNSExceptionScenario.swift │ │ │ ├── OversizedBreadcrumbsScenario.swift │ │ │ ├── OversizedCrashReportScenario.swift │ │ │ ├── OversizedHandledErrorScenario.swift │ │ │ ├── OverwriteLinkRegisterScenario.m │ │ │ ├── PrivilegedInstructionScenario.m │ │ │ ├── ReadGarbagePointerScenario.m │ │ │ ├── ReadOnlyPageScenario.m │ │ │ ├── RecrashScenarios.mm │ │ │ ├── ReleasedObjectScenario.m │ │ │ ├── ReportBackgroundAppHangScenario.swift │ │ │ ├── ResumeSessionOOMScenario.m │ │ │ ├── ResumedSessionScenario.swift │ │ │ ├── SIGBUSScenario.m │ │ │ ├── SIGFPEScenario.m │ │ │ ├── SIGILLScenario.m │ │ │ ├── SIGPIPEIgnoredScenario.m │ │ │ ├── SIGPIPEScenario.m │ │ │ ├── SIGSEGVScenario.m │ │ │ ├── SIGSYSScenario.m │ │ │ ├── SIGTRAPScenario.m │ │ │ ├── Scenario.h │ │ │ ├── Scenario.m │ │ │ ├── SendLaunchCrashesSynchronouslyFalseScenario.swift │ │ │ ├── SendLaunchCrashesSynchronouslyLaunchCompletedScenario.swift │ │ │ ├── SendLaunchCrashesSynchronouslyScenario.swift │ │ │ ├── SessionCallbackCrashScenario.swift │ │ │ ├── SessionCallbackDiscardScenario.swift │ │ │ ├── SessionCallbackOrderScenario.swift │ │ │ ├── SessionCallbackOverrideScenario.swift │ │ │ ├── SessionCallbackRemovalScenario.m │ │ │ ├── SessionOOMScenario.m │ │ │ ├── StackOverflowScenario.m │ │ │ ├── StopSessionOOMScenario.m │ │ │ ├── StoppedSessionScenario.swift │ │ │ ├── SwiftAssertionScenario.swift │ │ │ ├── SwiftCrashScenario.swift │ │ │ ├── TelemetryUsageDisabledScenario.swift │ │ │ ├── ThermalStateBreadcrumbScenario.swift │ │ │ ├── UndefinedInstructionScenario.m │ │ │ ├── UnhandledErrorChangeInvalidReleaseStageScenario.swift │ │ │ ├── UnhandledErrorChangeValidReleaseStageScenario.swift │ │ │ ├── UnhandledErrorInvalidReleaseStageScenario.swift │ │ │ ├── UnhandledErrorThreadSendAlwaysScenario.m │ │ │ ├── UnhandledErrorThreadSendNeverScenario.m │ │ │ ├── UnhandledErrorValidReleaseStageScenario.swift │ │ │ ├── UnhandledInternalNotifyScenario.swift │ │ │ ├── UnhandledMachExceptionOverrideScenario.m │ │ │ ├── UnhandledMachExceptionScenario.m │ │ │ ├── UserEventOverrideScenario.swift │ │ │ ├── UserFromClientScenario.swift │ │ │ ├── UserFromConfigScenario.swift │ │ │ ├── UserInfoScenario.swift │ │ │ ├── UserNilScenario.swift │ │ │ ├── UserPersistenceDontPersistUserScenario.m │ │ │ ├── UserPersistenceNoUserScenario.m │ │ │ ├── UserPersistencePersistUserClientScenario.m │ │ │ ├── UserPersistencePersistUserScenario.m │ │ │ ├── UserSessionOverrideScenario.swift │ │ │ └── spin_malloc.h │ │ └── utils │ │ │ ├── BugsnagWrapper.swift │ │ │ ├── CommandReaderThread.swift │ │ │ ├── Fixture.swift │ │ │ ├── FixtureConfig.h │ │ │ ├── FixtureConfig.m │ │ │ ├── Logging.h │ │ │ ├── Logging.m │ │ │ ├── Logging.swift │ │ │ └── MazeRunnerCommand.swift │ └── watchos │ │ ├── Podfile │ │ ├── watchOSTestApp WatchKit App │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── Interface.storyboard │ │ ├── watchOSTestApp WatchKit Extension │ │ ├── Assets.xcassets │ │ │ ├── Complication.complicationset │ │ │ │ ├── Circular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Extra Large.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Bezel.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Circular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Corner.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Extra Large.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Large Rectangular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Modular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Utilitarian.imageset │ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ComplicationController.swift │ │ ├── ExtensionDelegate.swift │ │ ├── Info.plist │ │ ├── InterfaceController.swift │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── watchOSTestApp.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── watchOSTestApp WatchKit App (Complication).xcscheme │ │ │ └── watchOSTestApp WatchKit App.xcscheme │ │ └── watchOSTestApp.xcworkspace │ │ └── contents.xcworkspacedata ├── release │ ├── app_and_device_attributes.feature │ ├── auto_detect_errors.feature │ ├── barebone_tests.feature │ ├── breadcrumb_callbacks.feature │ ├── breadcrumbs.feature │ ├── config_from_plist.feature │ ├── context.feature │ ├── crashprobe.feature │ ├── cross_notifier_notify.feature │ ├── delivery.feature │ ├── discard_classes.feature │ ├── enabled_error_types.feature │ ├── error_reporting_thread.feature │ ├── event_callbacks.feature │ ├── handled_errors.feature │ ├── internal_workings.feature │ ├── last_run_info.feature │ ├── metadata_merging.feature │ ├── metadata_redaction.feature │ ├── out_of_memory.feature │ ├── plugin_interface.feature │ ├── recrash_reports.feature │ ├── release_stage_errors.feature │ ├── release_stage_sessions.feature │ ├── runtime_versions.feature │ ├── session_callbacks.feature │ ├── session_stopping.feature │ ├── session_tracking.feature │ ├── stress_test.feature │ ├── telemetry.feature │ ├── thermal_state.feature │ ├── threads.feature │ ├── unhandled_cpp_exception.feature │ ├── unhandled_mach_exception.feature │ ├── unhandled_nsexception.feature │ ├── unhandled_signal.feature │ ├── user.feature │ └── user_persistence.feature ├── scripts │ ├── export_ios_app.sh │ ├── export_mac_app.sh │ ├── export_xcframework_ios_app.sh │ ├── export_xcframework_mac_app.sh │ └── foreground_ios_app.sh ├── steps │ ├── app_steps.rb │ ├── cocoa_steps.rb │ ├── negative_comparison_steps.rb │ └── reusable_steps.rb └── support │ ├── env.rb │ └── maze.buildkite.cfg └── scripts ├── build-carthage.sh ├── build-test-fixture.rb ├── build-xcframework.sh └── run-unit-tests.sh /.buildkite/block.full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.buildkite/block.full.yml -------------------------------------------------------------------------------- /.buildkite/pipeline.full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.buildkite/pipeline.full.yml -------------------------------------------------------------------------------- /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.buildkite/pipeline_trigger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.buildkite/pipeline_trigger.sh -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | IndentWidth: 4 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/ISSUE_TEMPLATE/A.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/downstream_updates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/workflows/downstream_updates.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/signing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/workflows/signing.yml -------------------------------------------------------------------------------- /.github/workflows/update_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.github/workflows/update_docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.gitignore -------------------------------------------------------------------------------- /.inferconfig: -------------------------------------------------------------------------------- 1 | { 2 | "disable-issue-type": ["DEAD_STORE", "RESOURCE_LEAK"] 3 | } -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.oclint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/.oclint -------------------------------------------------------------------------------- /BUGSNAG-PLUGIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/BUGSNAG-PLUGIN.md -------------------------------------------------------------------------------- /Bugsnag.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag.podspec.json -------------------------------------------------------------------------------- /Bugsnag.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag.xcconfig -------------------------------------------------------------------------------- /Bugsnag.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Bugsnag.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Bugsnag.xcodeproj/xcshareddata/xcschemes/Bugsnag-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag.xcodeproj/xcshareddata/xcschemes/Bugsnag-iOS.xcscheme -------------------------------------------------------------------------------- /Bugsnag.xcodeproj/xcshareddata/xcschemes/Bugsnag-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag.xcodeproj/xcshareddata/xcschemes/Bugsnag-macOS.xcscheme -------------------------------------------------------------------------------- /Bugsnag.xcodeproj/xcshareddata/xcschemes/Bugsnag-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag.xcodeproj/xcshareddata/xcschemes/Bugsnag-tvOS.xcscheme -------------------------------------------------------------------------------- /Bugsnag.xcodeproj/xcshareddata/xcschemes/Bugsnag-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag.xcodeproj/xcshareddata/xcschemes/Bugsnag-watchOS.xcscheme -------------------------------------------------------------------------------- /Bugsnag.xcodeproj/xcshareddata/xcschemes/BugsnagStatic.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag.xcodeproj/xcshareddata/xcschemes/BugsnagStatic.xcscheme -------------------------------------------------------------------------------- /Bugsnag.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Bugsnag/BSGCrashSentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/BSGCrashSentry.h -------------------------------------------------------------------------------- /Bugsnag/BSGCrashSentry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/BSGCrashSentry.m -------------------------------------------------------------------------------- /Bugsnag/Breadcrumbs/BSGNetworkBreadcrumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Breadcrumbs/BSGNetworkBreadcrumb.h -------------------------------------------------------------------------------- /Bugsnag/Breadcrumbs/BSGNetworkBreadcrumb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Breadcrumbs/BSGNetworkBreadcrumb.m -------------------------------------------------------------------------------- /Bugsnag/Breadcrumbs/BSGNotificationBreadcrumbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Breadcrumbs/BSGNotificationBreadcrumbs.h -------------------------------------------------------------------------------- /Bugsnag/Breadcrumbs/BSGNotificationBreadcrumbs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Breadcrumbs/BSGNotificationBreadcrumbs.m -------------------------------------------------------------------------------- /Bugsnag/Breadcrumbs/BugsnagBreadcrumbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Breadcrumbs/BugsnagBreadcrumbs.h -------------------------------------------------------------------------------- /Bugsnag/Breadcrumbs/BugsnagBreadcrumbs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Breadcrumbs/BugsnagBreadcrumbs.m -------------------------------------------------------------------------------- /Bugsnag/Bugsnag+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Bugsnag+Private.h -------------------------------------------------------------------------------- /Bugsnag/Bugsnag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Bugsnag.m -------------------------------------------------------------------------------- /Bugsnag/BugsnagFeatureFlag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/BugsnagFeatureFlag.m -------------------------------------------------------------------------------- /Bugsnag/BugsnagInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/BugsnagInternals.h -------------------------------------------------------------------------------- /Bugsnag/BugsnagLastRunInfo+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/BugsnagLastRunInfo+Private.h -------------------------------------------------------------------------------- /Bugsnag/BugsnagLastRunInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/BugsnagLastRunInfo.m -------------------------------------------------------------------------------- /Bugsnag/BugsnagSessionTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/BugsnagSessionTracker.h -------------------------------------------------------------------------------- /Bugsnag/BugsnagSessionTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/BugsnagSessionTracker.m -------------------------------------------------------------------------------- /Bugsnag/BugsnagSystemState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/BugsnagSystemState.h -------------------------------------------------------------------------------- /Bugsnag/BugsnagSystemState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/BugsnagSystemState.m -------------------------------------------------------------------------------- /Bugsnag/Client/BugsnagClient+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Client/BugsnagClient+Private.h -------------------------------------------------------------------------------- /Bugsnag/Client/BugsnagClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Client/BugsnagClient.m -------------------------------------------------------------------------------- /Bugsnag/Configuration/BSGConfigurationBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Configuration/BSGConfigurationBuilder.h -------------------------------------------------------------------------------- /Bugsnag/Configuration/BSGConfigurationBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Configuration/BSGConfigurationBuilder.m -------------------------------------------------------------------------------- /Bugsnag/Configuration/BugsnagConfiguration+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Configuration/BugsnagConfiguration+Private.h -------------------------------------------------------------------------------- /Bugsnag/Configuration/BugsnagConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Configuration/BugsnagConfiguration.m -------------------------------------------------------------------------------- /Bugsnag/Configuration/BugsnagEndpointConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Configuration/BugsnagEndpointConfiguration.m -------------------------------------------------------------------------------- /Bugsnag/Configuration/BugsnagErrorTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Configuration/BugsnagErrorTypes.m -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGConnectivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGConnectivity.h -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGConnectivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGConnectivity.m -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGEventUploadFileOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGEventUploadFileOperation.h -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGEventUploadFileOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGEventUploadFileOperation.m -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGEventUploadKSCrashReportOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGEventUploadKSCrashReportOperation.h -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGEventUploadKSCrashReportOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGEventUploadKSCrashReportOperation.m -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGEventUploadObjectOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGEventUploadObjectOperation.h -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGEventUploadObjectOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGEventUploadObjectOperation.m -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGEventUploadOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGEventUploadOperation.h -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGEventUploadOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGEventUploadOperation.m -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGEventUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGEventUploader.h -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGEventUploader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGEventUploader.m -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGSessionUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGSessionUploader.h -------------------------------------------------------------------------------- /Bugsnag/Delivery/BSGSessionUploader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BSGSessionUploader.m -------------------------------------------------------------------------------- /Bugsnag/Delivery/BugsnagApiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BugsnagApiClient.h -------------------------------------------------------------------------------- /Bugsnag/Delivery/BugsnagApiClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Delivery/BugsnagApiClient.m -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGAtomicFeatureFlagStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGAtomicFeatureFlagStore.h -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGAtomicFeatureFlagStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGAtomicFeatureFlagStore.m -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGCompositeFeatureFlagStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGCompositeFeatureFlagStore.h -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGCompositeFeatureFlagStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGCompositeFeatureFlagStore.m -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGFeatureFlagStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGFeatureFlagStore.h -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGMemoryFeatureFlagStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGMemoryFeatureFlagStore.h -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGMemoryFeatureFlagStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGMemoryFeatureFlagStore.m -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGPersistentFeatureFlagStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGPersistentFeatureFlagStore.h -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGPersistentFeatureFlagStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGPersistentFeatureFlagStore.m -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGStoredFeatureFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGStoredFeatureFlag.h -------------------------------------------------------------------------------- /Bugsnag/FeatureFlags/BSGStoredFeatureFlag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/FeatureFlags/BSGStoredFeatureFlag.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGAppHangDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGAppHangDetector.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGAppHangDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGAppHangDetector.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGAppKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGAppKit.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGDefines.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGFilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGFilesystem.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGFilesystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGFilesystem.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGGlobals.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGGlobals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGGlobals.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGHardware.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGInternalErrorReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGInternalErrorReporter.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGInternalErrorReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGInternalErrorReporter.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGJSONSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGJSONSerialization.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGJSONSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGJSONSerialization.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGKeys.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGRunContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGRunContext.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGRunContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGRunContext.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGSerialization.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGSerialization.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGTelemetry.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGTelemetry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGTelemetry.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGUIKit.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGUtils.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGUtils.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSGWatchKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSGWatchKit.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSG_RFC3339DateTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSG_RFC3339DateTool.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BSG_RFC3339DateTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BSG_RFC3339DateTool.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BugsnagCocoaPerformanceFromBugsnagCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BugsnagCocoaPerformanceFromBugsnagCocoa.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BugsnagCocoaPerformanceFromBugsnagCocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BugsnagCocoaPerformanceFromBugsnagCocoa.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BugsnagCollections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BugsnagCollections.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/BugsnagCollections.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BugsnagCollections.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/BugsnagLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/BugsnagLogger.h -------------------------------------------------------------------------------- /Bugsnag/Helpers/MRCCanary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/MRCCanary.m -------------------------------------------------------------------------------- /Bugsnag/Helpers/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Helpers/stb_sprintf.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/LICENSE -------------------------------------------------------------------------------- /Bugsnag/KSCrash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/README.md -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_Jailbreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_Jailbreak.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrash.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrash.m -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashC.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashC.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashContext.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashDoctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashDoctor.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashDoctor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashDoctor.m -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashIdentifier.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashIdentifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashIdentifier.m -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashNames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashNames.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashNames.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashReport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashReport.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashReport.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashReportFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashReportFields.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashReportVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashReportVersion.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashState.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashState.m -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSCrashType.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSFile.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSFile.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSPlatformSpecificDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSPlatformSpecificDefines.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSSystemInfo.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSSystemInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSSystemInfo.m -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSSystemInfoC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/BSG_KSSystemInfoC.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_CPPException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_CPPException.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_NSException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_NSException.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_NSException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_NSException.m -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_Private.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_Signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_Signal.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_Signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_Signal.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSArchSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSArchSpecific.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSBacktrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSBacktrace.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSBacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSBacktrace.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSBacktrace_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSBacktrace_Private.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSCrashStringConversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSCrashStringConversion.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSCrashStringConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSCrashStringConversion.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSCxaThrowSwapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSCxaThrowSwapper.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSCxaThrowSwapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSCxaThrowSwapper.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSFileUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSFileUtils.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSFileUtils.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSJSONCodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSJSONCodec.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSJSONCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSJSONCodec.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSLogger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSLogger.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSLogger.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach-O.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach-O.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach-O.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach-O.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMachApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMachApple.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMachHeaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMachHeaders.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMachHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMachHeaders.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach_Arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach_Arm.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach_Arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach_Arm64.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach_x86_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach_x86_32.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach_x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSMach_x86_64.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSSignalInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSSignalInfo.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSSignalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSSignalInfo.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSString.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSString.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSSysCtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSSysCtl.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSSysCtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_KSSysCtl.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_Symbolicate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_Symbolicate.c -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_Symbolicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Recording/Tools/BSG_Symbolicate.h -------------------------------------------------------------------------------- /Bugsnag/KSCrash/Source/KSCrash/Reporting/Filters/BSGOnErrorSentBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/KSCrash/Source/KSCrash/Reporting/Filters/BSGOnErrorSentBlock.h -------------------------------------------------------------------------------- /Bugsnag/Metadata/BugsnagMetadata+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Metadata/BugsnagMetadata+Private.h -------------------------------------------------------------------------------- /Bugsnag/Metadata/BugsnagMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Metadata/BugsnagMetadata.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagApp+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagApp+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagApp.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagAppWithState+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagAppWithState+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagAppWithState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagAppWithState.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagBreadcrumb+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagBreadcrumb+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagBreadcrumb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagBreadcrumb.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagCorrelation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagCorrelation.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagCorrelation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagCorrelation.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagDevice+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagDevice+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagDevice.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagDeviceWithState+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagDeviceWithState+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagDeviceWithState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagDeviceWithState.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagError+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagError+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagError.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagEvent+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagEvent+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagEvent.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagHandledState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagHandledState.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagHandledState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagHandledState.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagNotifier.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagNotifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagNotifier.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagSession+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagSession+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagSession.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagStackframe+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagStackframe+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagStackframe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagStackframe.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagStacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagStacktrace.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagStacktrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagStacktrace.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagThread+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagThread+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagThread.m -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagUser+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagUser+Private.h -------------------------------------------------------------------------------- /Bugsnag/Payload/BugsnagUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Payload/BugsnagUser.m -------------------------------------------------------------------------------- /Bugsnag/Storage/BSGFileLocations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Storage/BSGFileLocations.h -------------------------------------------------------------------------------- /Bugsnag/Storage/BSGFileLocations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Storage/BSGFileLocations.m -------------------------------------------------------------------------------- /Bugsnag/Storage/BSGPersistentDeviceID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Storage/BSGPersistentDeviceID.h -------------------------------------------------------------------------------- /Bugsnag/Storage/BSGPersistentDeviceID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Storage/BSGPersistentDeviceID.m -------------------------------------------------------------------------------- /Bugsnag/Storage/BSGStorageMigratorV0V1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Storage/BSGStorageMigratorV0V1.h -------------------------------------------------------------------------------- /Bugsnag/Storage/BSGStorageMigratorV0V1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/Storage/BSGStorageMigratorV0V1.m -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BSG_KSCrashReportWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BSG_KSCrashReportWriter.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/Bugsnag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/Bugsnag.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagApp.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagAppWithState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagAppWithState.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagBreadcrumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagBreadcrumb.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagClient.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagConfiguration.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagDefines.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagDevice.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagDeviceWithState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagDeviceWithState.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagEndpointConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagEndpointConfiguration.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagError.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagErrorTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagErrorTypes.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagEvent.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagFeatureFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagFeatureFlag.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagFeatureFlagStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagFeatureFlagStore.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagLastRunInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagLastRunInfo.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagMetadata.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagMetadataStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagMetadataStore.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagPlugin.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagSession.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagStackframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagStackframe.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagThread.h -------------------------------------------------------------------------------- /Bugsnag/include/Bugsnag/BugsnagUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/include/Bugsnag/BugsnagUser.h -------------------------------------------------------------------------------- /Bugsnag/resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Bugsnag/resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /BugsnagNetworkRequestPlugin.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/BugsnagNetworkRequestPlugin.podspec.json -------------------------------------------------------------------------------- /BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/Info.plist -------------------------------------------------------------------------------- /BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/NSURLSession+Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/NSURLSession+Tracing.h -------------------------------------------------------------------------------- /BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/NSURLSession+Tracing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/NSURLSession+Tracing.m -------------------------------------------------------------------------------- /BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPluginTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPluginTests/Info.plist -------------------------------------------------------------------------------- /BugsnagNetworkRequestPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/BugsnagNetworkRequestPlugin/README.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Dangerfile -------------------------------------------------------------------------------- /Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Framework/Info.plist -------------------------------------------------------------------------------- /Framework/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Framework/module.modulemap -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Makefile -------------------------------------------------------------------------------- /ORGANIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/ORGANIZATION.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/TESTING.md -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGAppKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGAppKitTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGAtomicFeatureFlagStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGAtomicFeatureFlagStoreTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGClientObserverTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGClientObserverTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGConfigurationBuilderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGConfigurationBuilderTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGConnectivityTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGConnectivityTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGDefinesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGDefinesTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGEventUploadKSCrashReportOperationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGEventUploadKSCrashReportOperationTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGInternalErrorReporterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGInternalErrorReporterTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGJSONSerializationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGJSONSerializationTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGMemoryFeatureFlagStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGMemoryFeatureFlagStoreTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGNetworkBreadcrumbTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGNetworkBreadcrumbTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGNotificationBreadcrumbsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGNotificationBreadcrumbsTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGOutOfMemoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGOutOfMemoryTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGPersistentDeviceIDTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGPersistentDeviceIDTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGRunContextTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGRunContextTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGSerializationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGSerializationTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGStorageMigratorV0V1Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGStorageMigratorV0V1Tests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGTelemetryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGTelemetryTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGTestCase.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGTestCase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGTestCase.mm -------------------------------------------------------------------------------- /Tests/BugsnagTests/BSGUtilsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BSGUtilsTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagApiClientTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagApiClientTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagApiValidationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagApiValidationTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagAppTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagAppTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagBreadcrumbsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagBreadcrumbsTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagClientMirrorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagClientMirrorTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagClientPayloadInfoTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagClientPayloadInfoTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagClientTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagClientTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagCollectionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagCollectionsTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagConfigurationTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagDeviceTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagDeviceTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagEnabledBreadcrumbTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagEnabledBreadcrumbTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagErrorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagErrorTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagEventFromKSCrashReportTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagEventFromKSCrashReportTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagEventPersistLoadTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagEventPersistLoadTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagEventTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagEventTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagHandledStateTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagHandledStateTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagMetadataRedactionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagMetadataRedactionTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagMetadataTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagMetadataTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagNotifierTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagNotifierTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagOnBreadcrumbTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagOnBreadcrumbTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagOnCrashTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagOnCrashTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagPerformanceBridgeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagPerformanceBridgeTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagPluginTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagPluginTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagSessionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagSessionTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagSessionTrackerStopTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagSessionTrackerStopTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagSessionTrackerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagSessionTrackerTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagStackframeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagStackframeTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagStacktraceTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagStacktraceTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagSwiftConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagSwiftConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagSwiftPublicAPITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagSwiftPublicAPITests.swift -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagSwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagSwiftTests.swift -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagTestConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagTestConstants.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagTestsDummyClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagTestsDummyClass.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagTestsDummyClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagTestsDummyClass.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagThreadSerializationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagThreadSerializationTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagThreadTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagThreadTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/BugsnagUserTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/BugsnagUserTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/ClientApiValidationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/ClientApiValidationTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/ConfigurationApiValidationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/ConfigurationApiValidationTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/Data/BugsnagEvents/BugsnagEvent1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/Data/BugsnagEvents/BugsnagEvent1.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/Data/KSCrashReport1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/Data/KSCrashReport1.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/Data/RecrashReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/Data/RecrashReport.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/EventApiValidationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/EventApiValidationTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/FileBasedTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/FileBasedTest.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/FileBasedTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/FileBasedTest.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/Info.plist -------------------------------------------------------------------------------- /Tests/BugsnagTests/Swizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/Swizzle.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/Swizzle.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/Swizzle.mm -------------------------------------------------------------------------------- /Tests/BugsnagTests/TestSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/TestSupport.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/TestSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/TestSupport.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/Tests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/Tests-Bridging-Header.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/UIApplicationStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/UIApplicationStub.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/UIApplicationStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/UIApplicationStub.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/UIKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/UIKitTests.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/UISceneStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/UISceneStub.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/UISceneStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/UISceneStub.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/URLSessionMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/URLSessionMock.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/URLSessionMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/URLSessionMock.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/WriterTestsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/WriterTestsSupport.h -------------------------------------------------------------------------------- /Tests/BugsnagTests/WriterTestsSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/WriterTestsSupport.m -------------------------------------------------------------------------------- /Tests/BugsnagTests/report-react-native-promise-rejection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/report-react-native-promise-rejection.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/report.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/Sessions/xctest/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/bsg_kvstore/debuggerIsActive: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/bsg_kvstore/inForeground: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/bsg_kvstore/isActive: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/bugsnag/breadcrumbs/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/v0_files/Caches/bugsnag/breadcrumbs/0.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/bugsnag/breadcrumbs/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/v0_files/Caches/bugsnag/breadcrumbs/1.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/bugsnag/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/v0_files/Caches/bugsnag/config.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/bugsnag/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/v0_files/Caches/bugsnag/metadata.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/bugsnag/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/v0_files/Caches/bugsnag/state.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/bugsnag/state/system_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/BugsnagTests/v0_files/Caches/bugsnag/state/system_state.json -------------------------------------------------------------------------------- /Tests/BugsnagTests/v0_files/Caches/bugsnag_handled_crash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/KSCrashTests/BSG_KSCrashReportTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/BSG_KSCrashReportTests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/BSG_KSCrashStringConversionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/BSG_KSCrashStringConversionTest.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/BSG_KSFileTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/BSG_KSFileTests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/BSG_KSMachHeadersTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/BSG_KSMachHeadersTests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/BSG_KSMachTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/BSG_KSMachTests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/FileBasedTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/FileBasedTestCase.h -------------------------------------------------------------------------------- /Tests/KSCrashTests/FileBasedTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/FileBasedTestCase.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSCrashNames_Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSCrashNames_Test.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSCrashReportWriterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSCrashReportWriterTests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSCrashSentry_NSException_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSCrashSentry_NSException_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSCrashSentry_Signal_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSCrashSentry_Signal_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSCrashSentry_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSCrashSentry_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSCrashState_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSCrashState_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSFileUtils_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSFileUtils_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSJSONCodec_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSJSONCodec_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSLogger_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSLogger_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSSignalInfo_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSSignalInfo_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSSysCtl_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSSysCtl_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/KSSystemInfo_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/KSSystemInfo_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/RFC3339DateTool_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/RFC3339DateTool_Tests.m -------------------------------------------------------------------------------- /Tests/KSCrashTests/XCTestCase+KSCrash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/XCTestCase+KSCrash.h -------------------------------------------------------------------------------- /Tests/KSCrashTests/XCTestCase+KSCrash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/KSCrashTests/XCTestCase+KSCrash.m -------------------------------------------------------------------------------- /Tests/TestHost-iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/TestHost-iOS/AppDelegate.h -------------------------------------------------------------------------------- /Tests/TestHost-iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/TestHost-iOS/AppDelegate.m -------------------------------------------------------------------------------- /Tests/TestHost-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/TestHost-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/TestHost-iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/TestHost-iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/TestHost-iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/TestHost-iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tests/TestHost-iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/TestHost-iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Tests/TestHost-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/TestHost-iOS/Info.plist -------------------------------------------------------------------------------- /Tests/TestHost-iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/Tests/TestHost-iOS/main.m -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 6.34.1 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dyms.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/objective-c-ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/Podfile -------------------------------------------------------------------------------- /examples/objective-c-ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/README.md -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/AppDelegate.h -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/AppDelegate.m -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/CxxException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/CxxException.h -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/CxxException.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/CxxException.mm -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/Info.plist -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/OutOfMemoryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/OutOfMemoryController.h -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/OutOfMemoryController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/OutOfMemoryController.m -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/SceneDelegate.h -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/SceneDelegate.m -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/ViewController.h -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/ViewController.m -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/en.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/en.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/en.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/en.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/objective-c-ios/objective-c-ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-ios/objective-c-ios/main.m -------------------------------------------------------------------------------- /examples/objective-c-osx/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/Podfile -------------------------------------------------------------------------------- /examples/objective-c-osx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/README.md -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx/AppDelegate.h -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx/AppDelegate.m -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx/CustomApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx/CustomApplication.h -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx/CustomApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx/CustomApplication.m -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx/Info.plist -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx/ViewController.h -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx/ViewController.m -------------------------------------------------------------------------------- /examples/objective-c-osx/objective-c-osx/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/objective-c-osx/objective-c-osx/main.m -------------------------------------------------------------------------------- /examples/swift-ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/Podfile -------------------------------------------------------------------------------- /examples/swift-ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/README.md -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios.xcodeproj/xcshareddata/xcschemes/swift-ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios.xcodeproj/xcshareddata/xcschemes/swift-ios.xcscheme -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/AnObjCClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/AnObjCClass.h -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/AnObjCClass.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/AnObjCClass.mm -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/AnotherClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/AnotherClass.swift -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/AppDelegate.swift -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/Info.plist -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/OutOfMemoryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/OutOfMemoryController.h -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/OutOfMemoryController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/OutOfMemoryController.m -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/SceneDelegate.swift -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/ViewController.swift -------------------------------------------------------------------------------- /examples/swift-ios/swift-ios/swift-ios-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-ios/swift-ios/swift-ios-Bridging-Header.h -------------------------------------------------------------------------------- /examples/swift-package-manager/swift-package-manager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-package-manager/swift-package-manager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/swift-package-manager/swift-package-manager/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-package-manager/swift-package-manager/AppDelegate.swift -------------------------------------------------------------------------------- /examples/swift-package-manager/swift-package-manager/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-package-manager/swift-package-manager/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/swift-package-manager/swift-package-manager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-package-manager/swift-package-manager/Info.plist -------------------------------------------------------------------------------- /examples/swift-package-manager/swift-package-manager/OutOfMemoryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-package-manager/swift-package-manager/OutOfMemoryController.h -------------------------------------------------------------------------------- /examples/swift-package-manager/swift-package-manager/OutOfMemoryController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-package-manager/swift-package-manager/OutOfMemoryController.m -------------------------------------------------------------------------------- /examples/swift-package-manager/swift-package-manager/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-package-manager/swift-package-manager/SceneDelegate.swift -------------------------------------------------------------------------------- /examples/swift-package-manager/swift-package-manager/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-package-manager/swift-package-manager/ViewController.swift -------------------------------------------------------------------------------- /examples/swift-watchos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-watchos/Podfile -------------------------------------------------------------------------------- /examples/swift-watchos/swift-watchos WatchKit App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-watchos/swift-watchos WatchKit App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/swift-watchos/swift-watchos WatchKit Extension/AnObjCClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-watchos/swift-watchos WatchKit Extension/AnObjCClass.h -------------------------------------------------------------------------------- /examples/swift-watchos/swift-watchos WatchKit Extension/AnObjCClass.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-watchos/swift-watchos WatchKit Extension/AnObjCClass.mm -------------------------------------------------------------------------------- /examples/swift-watchos/swift-watchos WatchKit Extension/ExtensionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-watchos/swift-watchos WatchKit Extension/ExtensionDelegate.swift -------------------------------------------------------------------------------- /examples/swift-watchos/swift-watchos WatchKit Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-watchos/swift-watchos WatchKit Extension/Info.plist -------------------------------------------------------------------------------- /examples/swift-watchos/swift-watchos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-watchos/swift-watchos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/swift-watchos/swift-watchos.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swift-watchos/swift-watchos.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/swiftui/Shared/AnObjCClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/AnObjCClass.h -------------------------------------------------------------------------------- /examples/swiftui/Shared/AnObjCClass.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/AnObjCClass.mm -------------------------------------------------------------------------------- /examples/swiftui/Shared/AppMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/AppMain.swift -------------------------------------------------------------------------------- /examples/swiftui/Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /examples/swiftui/Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/swiftui/Shared/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/Bridging-Header.h -------------------------------------------------------------------------------- /examples/swiftui/Shared/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/ContentView.swift -------------------------------------------------------------------------------- /examples/swiftui/Shared/Examples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/Shared/Examples.swift -------------------------------------------------------------------------------- /examples/swiftui/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/iOS/Info.plist -------------------------------------------------------------------------------- /examples/swiftui/iOS/OutOfMemoryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/iOS/OutOfMemoryController.h -------------------------------------------------------------------------------- /examples/swiftui/iOS/OutOfMemoryController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/iOS/OutOfMemoryController.m -------------------------------------------------------------------------------- /examples/swiftui/iOS/OutOfMemoryPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/iOS/OutOfMemoryPresenter.swift -------------------------------------------------------------------------------- /examples/swiftui/macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/macOS/Info.plist -------------------------------------------------------------------------------- /examples/swiftui/macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/macOS/macOS.entitlements -------------------------------------------------------------------------------- /examples/swiftui/swiftui.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/swiftui.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/swiftui/tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/examples/swiftui/tvOS/Info.plist -------------------------------------------------------------------------------- /features/app_hangs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/app_hangs.feature -------------------------------------------------------------------------------- /features/debug/crashprobe.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/debug/crashprobe.feature -------------------------------------------------------------------------------- /features/debug/cross_notifier_notify.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/debug/cross_notifier_notify.feature -------------------------------------------------------------------------------- /features/debug/handled_errors.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/debug/handled_errors.feature -------------------------------------------------------------------------------- /features/debug/unhandled_nsexception.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/debug/unhandled_nsexception.feature -------------------------------------------------------------------------------- /features/fixtures/docs/background_for_0_sec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/docs/background_for_0_sec.html -------------------------------------------------------------------------------- /features/fixtures/docs/background_for_1_sec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/docs/background_for_1_sec.html -------------------------------------------------------------------------------- /features/fixtures/docs/background_for_2_sec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/docs/background_for_2_sec.html -------------------------------------------------------------------------------- /features/fixtures/docs/background_for_3_sec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/docs/background_for_3_sec.html -------------------------------------------------------------------------------- /features/fixtures/docs/background_for_4_sec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/docs/background_for_4_sec.html -------------------------------------------------------------------------------- /features/fixtures/docs/background_for_5_sec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/docs/background_for_5_sec.html -------------------------------------------------------------------------------- /features/fixtures/docs/background_forever.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/docs/background_forever.html -------------------------------------------------------------------------------- /features/fixtures/ios/.gitignore: -------------------------------------------------------------------------------- 1 | archive/ 2 | output/ 3 | -------------------------------------------------------------------------------- /features/fixtures/ios/exportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/ios/exportOptions.plist -------------------------------------------------------------------------------- /features/fixtures/ios/iOSTestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/ios/iOSTestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /features/fixtures/ios/iOSTestApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/ios/iOSTestApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /features/fixtures/ios/iOSTestApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/ios/iOSTestApp/AppDelegate.swift -------------------------------------------------------------------------------- /features/fixtures/ios/iOSTestApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/ios/iOSTestApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /features/fixtures/ios/iOSTestApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/ios/iOSTestApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /features/fixtures/ios/iOSTestApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/ios/iOSTestApp/Info.plist -------------------------------------------------------------------------------- /features/fixtures/ios/iOSTestApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/ios/iOSTestApp/ViewController.swift -------------------------------------------------------------------------------- /features/fixtures/ios/iOSTestAppXcFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/ios/iOSTestAppXcFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /features/fixtures/macos-stress-test/BugsnagStressTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos-stress-test/BugsnagStressTest/main.m -------------------------------------------------------------------------------- /features/fixtures/macos-stress-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos-stress-test/Makefile -------------------------------------------------------------------------------- /features/fixtures/macos-stress-test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos-stress-test/Podfile -------------------------------------------------------------------------------- /features/fixtures/macos-stress-test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos-stress-test/run.sh -------------------------------------------------------------------------------- /features/fixtures/macos/.gitignore: -------------------------------------------------------------------------------- 1 | archive/ 2 | output/ 3 | -------------------------------------------------------------------------------- /features/fixtures/macos/exportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/exportOptions.plist -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestApp/AppDelegate.h -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestApp/AppDelegate.m -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestApp/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestApp/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestApp/Info.plist -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestApp/MainWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestApp/MainWindowController.h -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestApp/MainWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestApp/MainWindowController.m -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestApp/MainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestApp/MainWindowController.xib -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestApp/main.m -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestAppXcFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestAppXcFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestAppXcFramework/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestAppXcFramework/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /features/fixtures/macos/macOSTestAppXcFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/macos/macOSTestAppXcFramework/Info.plist -------------------------------------------------------------------------------- /features/fixtures/shared/Bridge_InternalAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/Bridge_InternalAPI.h -------------------------------------------------------------------------------- /features/fixtures/shared/Bridge_PublicAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/Bridge_PublicAPI.h -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/.gitignore: -------------------------------------------------------------------------------- 1 | watchos_maze_host.h 2 | -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AbortOverrideScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AbortOverrideScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AbortScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AbortScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AccessNonObjectScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AccessNonObjectScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AppAndDeviceAttributesScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AppAndDeviceAttributesScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AppDurationScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AppDurationScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AppHangDefaultConfigScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AppHangDefaultConfigScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AppHangDidBecomeActiveScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AppHangDidBecomeActiveScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AppHangDidEnterBackgroundScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AppHangDidEnterBackgroundScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AppHangDisabledScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AppHangDisabledScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AppHangFatalDisabledScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AppHangFatalDisabledScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AppHangFatalOnlyScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AppHangFatalOnlyScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AppHangInTerminationScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AppHangInTerminationScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AppHangScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AppHangScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AsyncSafeMallocScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AsyncSafeMallocScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AsyncSafeThreadScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AsyncSafeThreadScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AttemptDeliveryOnCrashScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AttemptDeliveryOnCrashScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoCaptureRunScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoCaptureRunScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoContextNSErrorScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoContextNSErrorScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoContextNSExceptionScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoContextNSExceptionScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoDetectFalseAbortScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoDetectFalseAbortScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoDetectFalseHandledScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoDetectFalseHandledScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoDetectFalseNSExceptionScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoDetectFalseNSExceptionScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoSessionCustomVersionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoSessionCustomVersionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoSessionHandledEventsScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoSessionHandledEventsScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoSessionMixedEventsScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoSessionMixedEventsScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoSessionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoSessionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoSessionUnhandledScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoSessionUnhandledScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/AutoSessionWithUserScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/AutoSessionWithUserScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/BareboneTestHandledScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/BareboneTestHandledScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/BareboneTestUnhandledErrorScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/BareboneTestUnhandledErrorScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/BreadcrumbCallbackCrashScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/BreadcrumbCallbackCrashScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/BreadcrumbCallbackDiscardScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/BreadcrumbCallbackDiscardScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/BreadcrumbCallbackOrderScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/BreadcrumbCallbackOrderScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/BreadcrumbCallbackOverrideScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/BreadcrumbCallbackOverrideScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/BreadcrumbCallbackRemovalScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/BreadcrumbCallbackRemovalScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/BuiltinTrapScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/BuiltinTrapScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ConcurrentCrashesScenario.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ConcurrentCrashesScenario.mm -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/CouldNotCreateDirectoryScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/CouldNotCreateDirectoryScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/CriticalThermalStateScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/CriticalThermalStateScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/CustomPluginNotifierDescriptionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/CustomPluginNotifierDescriptionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/CxxBareThrowScenario.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/CxxBareThrowScenario.mm -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/CxxExceptionOverrideScenario.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/CxxExceptionOverrideScenario.mm -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/CxxExceptionScenario.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/CxxExceptionScenario.mm -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/DelayedNotifyErrorScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/DelayedNotifyErrorScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/DisableMachExceptionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/DisableMachExceptionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/DisableNSExceptionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/DisableNSExceptionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/DisableSignalsExceptionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/DisableSignalsExceptionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/DisabledSessionTrackingScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/DisabledSessionTrackingScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/DiscardClassesUnhandledCrashScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/DiscardClassesUnhandledCrashScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/DiscardedBreadcrumbTypeScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/DiscardedBreadcrumbTypeScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/DispatchCrashScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/DispatchCrashScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/EnabledBreadcrumbTypesIsNilScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/EnabledBreadcrumbTypesIsNilScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/EnabledErrorTypesCxxScenario.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/EnabledErrorTypesCxxScenario.mm -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/HandledErrorOverrideScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/HandledErrorOverrideScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/HandledErrorScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/HandledErrorScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/HandledErrorThreadSendAlwaysScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/HandledErrorThreadSendAlwaysScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/HandledErrorValidReleaseStageScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/HandledErrorValidReleaseStageScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/HandledExceptionScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/HandledExceptionScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/HandledInternalNotifyScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/HandledInternalNotifyScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/InternalWorkingsScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/InternalWorkingsScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/InvalidCrashReportScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/InvalidCrashReportScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/LastRunInfoScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/LastRunInfoScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/LoadConfigFromFileAutoScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/LoadConfigFromFileAutoScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/LoadConfigFromFileScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/LoadConfigFromFileScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ManualContextClientScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ManualContextClientScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ManualContextConfigurationScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ManualContextConfigurationScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ManualContextOnErrorScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ManualContextOnErrorScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ManualSessionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ManualSessionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ManualSessionWithUserScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ManualSessionWithUserScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ManyConcurrentNotifyScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ManyConcurrentNotifyScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/MarkUnhandledHandledScenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/MarkUnhandledHandledScenario.h -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/MarkUnhandledHandledScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/MarkUnhandledHandledScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/MaxPersistedSessionsScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/MaxPersistedSessionsScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/MetadataMergeScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/MetadataMergeScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/MetadataRedactionDefaultScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/MetadataRedactionDefaultScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/MetadataRedactionNestedScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/MetadataRedactionNestedScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/MetadataRedactionRegexScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/MetadataRedactionRegexScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ModifyBreadcrumbInNotifyScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ModifyBreadcrumbInNotifyScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ModifyBreadcrumbScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ModifyBreadcrumbScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/NSExceptionShiftScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/NSExceptionShiftScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/NetworkBreadcrumbsScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/NetworkBreadcrumbsScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/NewSessionScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/NewSessionScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/NonExistentMethodScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/NonExistentMethodScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/NotifyCallbackCrashScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/NotifyCallbackCrashScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/NullPointerScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/NullPointerScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OOMAutoDetectErrorsScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OOMAutoDetectErrorsScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OOMEnabledErrorTypesScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OOMEnabledErrorTypesScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OOMInactiveScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OOMInactiveScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OOMLoadScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OOMLoadScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OOMScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OOMScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OOMSessionScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OOMSessionScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OOMSessionlessScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OOMSessionlessScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OOMWillTerminateScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OOMWillTerminateScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ObjCExceptionFeatureFlagsScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ObjCExceptionFeatureFlagsScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ObjCExceptionOverrideScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ObjCExceptionOverrideScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ObjCExceptionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ObjCExceptionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ObjCMsgSendScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ObjCMsgSendScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OldCrashReportScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OldCrashReportScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OldHandledErrorScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OldHandledErrorScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OldSessionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OldSessionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OnCrashHandlerScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OnCrashHandlerScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OnErrorOverwriteScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OnErrorOverwriteScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OnErrorOverwriteUnhandledTrueScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OnErrorOverwriteUnhandledTrueScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OnSendCallbackOrderScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OnSendCallbackOrderScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OnSendCallbackRemovalScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OnSendCallbackRemovalScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OnSendErrorCallbackCrashScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OnSendErrorCallbackCrashScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OnSendErrorPersistenceScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OnSendErrorPersistenceScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OnSendOverwriteScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OnSendOverwriteScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OriginalErrorNSErrorScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OriginalErrorNSErrorScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OriginalErrorNSExceptionScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OriginalErrorNSExceptionScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OversizedBreadcrumbsScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OversizedBreadcrumbsScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OversizedCrashReportScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OversizedCrashReportScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OversizedHandledErrorScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OversizedHandledErrorScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/OverwriteLinkRegisterScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/OverwriteLinkRegisterScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/PrivilegedInstructionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/PrivilegedInstructionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ReadGarbagePointerScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ReadGarbagePointerScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ReadOnlyPageScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ReadOnlyPageScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/RecrashScenarios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/RecrashScenarios.mm -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ReleasedObjectScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ReleasedObjectScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ReportBackgroundAppHangScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ReportBackgroundAppHangScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ResumeSessionOOMScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ResumeSessionOOMScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ResumedSessionScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ResumedSessionScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SIGBUSScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SIGBUSScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SIGFPEScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SIGFPEScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SIGILLScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SIGILLScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SIGPIPEIgnoredScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SIGPIPEIgnoredScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SIGPIPEScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SIGPIPEScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SIGSEGVScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SIGSEGVScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SIGSYSScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SIGSYSScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SIGTRAPScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SIGTRAPScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/Scenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/Scenario.h -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/Scenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/Scenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SessionCallbackCrashScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SessionCallbackCrashScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SessionCallbackDiscardScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SessionCallbackDiscardScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SessionCallbackOrderScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SessionCallbackOrderScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SessionCallbackOverrideScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SessionCallbackOverrideScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SessionCallbackRemovalScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SessionCallbackRemovalScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SessionOOMScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SessionOOMScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/StackOverflowScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/StackOverflowScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/StopSessionOOMScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/StopSessionOOMScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/StoppedSessionScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/StoppedSessionScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SwiftAssertionScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SwiftAssertionScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/SwiftCrashScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/SwiftCrashScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/TelemetryUsageDisabledScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/TelemetryUsageDisabledScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/ThermalStateBreadcrumbScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/ThermalStateBreadcrumbScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UndefinedInstructionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UndefinedInstructionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UnhandledErrorThreadSendAlwaysScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UnhandledErrorThreadSendAlwaysScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UnhandledErrorThreadSendNeverScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UnhandledErrorThreadSendNeverScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UnhandledInternalNotifyScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UnhandledInternalNotifyScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UnhandledMachExceptionOverrideScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UnhandledMachExceptionOverrideScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UnhandledMachExceptionScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UnhandledMachExceptionScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UserEventOverrideScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UserEventOverrideScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UserFromClientScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UserFromClientScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UserFromConfigScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UserFromConfigScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UserInfoScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UserInfoScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UserNilScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UserNilScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UserPersistenceDontPersistUserScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UserPersistenceDontPersistUserScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UserPersistenceNoUserScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UserPersistenceNoUserScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UserPersistencePersistUserClientScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UserPersistencePersistUserClientScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UserPersistencePersistUserScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UserPersistencePersistUserScenario.m -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/UserSessionOverrideScenario.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/UserSessionOverrideScenario.swift -------------------------------------------------------------------------------- /features/fixtures/shared/scenarios/spin_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/scenarios/spin_malloc.h -------------------------------------------------------------------------------- /features/fixtures/shared/utils/BugsnagWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/utils/BugsnagWrapper.swift -------------------------------------------------------------------------------- /features/fixtures/shared/utils/CommandReaderThread.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/utils/CommandReaderThread.swift -------------------------------------------------------------------------------- /features/fixtures/shared/utils/Fixture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/utils/Fixture.swift -------------------------------------------------------------------------------- /features/fixtures/shared/utils/FixtureConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/utils/FixtureConfig.h -------------------------------------------------------------------------------- /features/fixtures/shared/utils/FixtureConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/utils/FixtureConfig.m -------------------------------------------------------------------------------- /features/fixtures/shared/utils/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/utils/Logging.h -------------------------------------------------------------------------------- /features/fixtures/shared/utils/Logging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/utils/Logging.m -------------------------------------------------------------------------------- /features/fixtures/shared/utils/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/utils/Logging.swift -------------------------------------------------------------------------------- /features/fixtures/shared/utils/MazeRunnerCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/shared/utils/MazeRunnerCommand.swift -------------------------------------------------------------------------------- /features/fixtures/watchos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/watchos/Podfile -------------------------------------------------------------------------------- /features/fixtures/watchos/watchOSTestApp WatchKit App/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/watchos/watchOSTestApp WatchKit App/Interface.storyboard -------------------------------------------------------------------------------- /features/fixtures/watchos/watchOSTestApp WatchKit Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/watchos/watchOSTestApp WatchKit Extension/Info.plist -------------------------------------------------------------------------------- /features/fixtures/watchos/watchOSTestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/watchos/watchOSTestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /features/fixtures/watchos/watchOSTestApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/fixtures/watchos/watchOSTestApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /features/release/app_and_device_attributes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/app_and_device_attributes.feature -------------------------------------------------------------------------------- /features/release/auto_detect_errors.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/auto_detect_errors.feature -------------------------------------------------------------------------------- /features/release/barebone_tests.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/barebone_tests.feature -------------------------------------------------------------------------------- /features/release/breadcrumb_callbacks.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/breadcrumb_callbacks.feature -------------------------------------------------------------------------------- /features/release/breadcrumbs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/breadcrumbs.feature -------------------------------------------------------------------------------- /features/release/config_from_plist.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/config_from_plist.feature -------------------------------------------------------------------------------- /features/release/context.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/context.feature -------------------------------------------------------------------------------- /features/release/crashprobe.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/crashprobe.feature -------------------------------------------------------------------------------- /features/release/cross_notifier_notify.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/cross_notifier_notify.feature -------------------------------------------------------------------------------- /features/release/delivery.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/delivery.feature -------------------------------------------------------------------------------- /features/release/discard_classes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/discard_classes.feature -------------------------------------------------------------------------------- /features/release/enabled_error_types.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/enabled_error_types.feature -------------------------------------------------------------------------------- /features/release/error_reporting_thread.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/error_reporting_thread.feature -------------------------------------------------------------------------------- /features/release/event_callbacks.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/event_callbacks.feature -------------------------------------------------------------------------------- /features/release/handled_errors.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/handled_errors.feature -------------------------------------------------------------------------------- /features/release/internal_workings.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/internal_workings.feature -------------------------------------------------------------------------------- /features/release/last_run_info.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/last_run_info.feature -------------------------------------------------------------------------------- /features/release/metadata_merging.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/metadata_merging.feature -------------------------------------------------------------------------------- /features/release/metadata_redaction.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/metadata_redaction.feature -------------------------------------------------------------------------------- /features/release/out_of_memory.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/out_of_memory.feature -------------------------------------------------------------------------------- /features/release/plugin_interface.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/plugin_interface.feature -------------------------------------------------------------------------------- /features/release/recrash_reports.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/recrash_reports.feature -------------------------------------------------------------------------------- /features/release/release_stage_errors.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/release_stage_errors.feature -------------------------------------------------------------------------------- /features/release/release_stage_sessions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/release_stage_sessions.feature -------------------------------------------------------------------------------- /features/release/runtime_versions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/runtime_versions.feature -------------------------------------------------------------------------------- /features/release/session_callbacks.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/session_callbacks.feature -------------------------------------------------------------------------------- /features/release/session_stopping.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/session_stopping.feature -------------------------------------------------------------------------------- /features/release/session_tracking.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/session_tracking.feature -------------------------------------------------------------------------------- /features/release/stress_test.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/stress_test.feature -------------------------------------------------------------------------------- /features/release/telemetry.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/telemetry.feature -------------------------------------------------------------------------------- /features/release/thermal_state.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/thermal_state.feature -------------------------------------------------------------------------------- /features/release/threads.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/threads.feature -------------------------------------------------------------------------------- /features/release/unhandled_cpp_exception.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/unhandled_cpp_exception.feature -------------------------------------------------------------------------------- /features/release/unhandled_mach_exception.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/unhandled_mach_exception.feature -------------------------------------------------------------------------------- /features/release/unhandled_nsexception.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/unhandled_nsexception.feature -------------------------------------------------------------------------------- /features/release/unhandled_signal.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/unhandled_signal.feature -------------------------------------------------------------------------------- /features/release/user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/user.feature -------------------------------------------------------------------------------- /features/release/user_persistence.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/release/user_persistence.feature -------------------------------------------------------------------------------- /features/scripts/export_ios_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/scripts/export_ios_app.sh -------------------------------------------------------------------------------- /features/scripts/export_mac_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/scripts/export_mac_app.sh -------------------------------------------------------------------------------- /features/scripts/export_xcframework_ios_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/scripts/export_xcframework_ios_app.sh -------------------------------------------------------------------------------- /features/scripts/export_xcframework_mac_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/scripts/export_xcframework_mac_app.sh -------------------------------------------------------------------------------- /features/scripts/foreground_ios_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/scripts/foreground_ios_app.sh -------------------------------------------------------------------------------- /features/steps/app_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/steps/app_steps.rb -------------------------------------------------------------------------------- /features/steps/cocoa_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/steps/cocoa_steps.rb -------------------------------------------------------------------------------- /features/steps/negative_comparison_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/steps/negative_comparison_steps.rb -------------------------------------------------------------------------------- /features/steps/reusable_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/steps/reusable_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/maze.buildkite.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/features/support/maze.buildkite.cfg -------------------------------------------------------------------------------- /scripts/build-carthage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/scripts/build-carthage.sh -------------------------------------------------------------------------------- /scripts/build-test-fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/scripts/build-test-fixture.rb -------------------------------------------------------------------------------- /scripts/build-xcframework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/scripts/build-xcframework.sh -------------------------------------------------------------------------------- /scripts/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/HEAD/scripts/run-unit-tests.sh --------------------------------------------------------------------------------