├── .github └── pull_request_template.md ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Examples ├── RollbarWithinAnotherFramework │ ├── KnobControl │ │ ├── KnobControl.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── KnobControl │ │ │ ├── Info.plist │ │ │ ├── Knob.swift │ │ │ ├── KnobControl.h │ │ │ ├── KnobRender.swift │ │ │ └── RotationGestureRecognizer.swift │ ├── KnobShowcase │ │ ├── KnobShowcase.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── IDETemplateMacros.plist │ │ └── KnobShowcase │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon20@2x.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon29@2x.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon40@2x.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon76@2x.png │ │ │ │ ├── Icon83.5@2x.png │ │ │ │ ├── icon-app-20@2x.png │ │ │ │ ├── icon-app-20@3x.png │ │ │ │ ├── icon-app-29@2x.png │ │ │ │ ├── icon-app-29@3x copy.png │ │ │ │ ├── icon-app-40@2x.png │ │ │ │ ├── icon-app-40@3x.png │ │ │ │ ├── icon-app-60@2x.png │ │ │ │ └── icon-app-60@3x.png │ │ │ ├── rw-logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Razewarelogo_1024.png │ │ │ └── rwdevcon-bg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── rwdevcon-bg.png │ │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── ViewController.swift │ └── ReadMe.md ├── iOSAppWithRollbarCocoaPod │ ├── Podfile │ ├── Podfile.lock │ ├── iOSAppWithRollbarCocoaPod.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── iOSAppWithRollbarCocoaPod.xcworkspace │ │ └── contents.xcworkspacedata │ └── iOSAppWithRollbarCocoaPod │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── iOSAppWithRollbarCocoaPod.entitlements │ │ └── main.m ├── iOSAppWithRollbarViaCarthage_Objective-C │ ├── Cartfile │ ├── Cartfile.resolved │ ├── ReadMe.md │ ├── iOSAppWithRollbarViaCarthage_Objective-C.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── iOSAppWithRollbarViaCarthage_Objective-C │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── SceneDelegate.h │ │ ├── SceneDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── input.xcfilelist │ └── output.xcfilelist ├── libs │ └── Rollbar │ │ ├── Release-iOS-Kit-iphoneos │ │ ├── 93E04F49-6E59-3114-B2FA-759CAB1CDC67.bcsymbolmap │ │ ├── A9B206AF-D13D-3A80-A603-D6BF6C166666.bcsymbolmap │ │ ├── Rollbar.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── Rollbar │ │ └── Rollbar.framework │ │ │ ├── Headers │ │ │ ├── DeployApiCallResult.h │ │ │ ├── Deployment.h │ │ │ ├── DeploymentDetails.h │ │ │ ├── Rollbar.h │ │ │ ├── RollbarConfiguration.h │ │ │ ├── RollbarDeploysManager.h │ │ │ ├── RollbarDeploysProtocol.h │ │ │ ├── RollbarFramework.h │ │ │ ├── RollbarJSONFriendlyObject.h │ │ │ ├── RollbarJSONFriendlyProtocol.h │ │ │ ├── RollbarKSCrashInstallation.h │ │ │ ├── RollbarKSCrashReportSink.h │ │ │ ├── RollbarKit_iOS.h │ │ │ ├── RollbarLevel.h │ │ │ ├── RollbarNotifier.h │ │ │ ├── RollbarTelemetry.h │ │ │ └── RollbarTelemetryType.h │ │ │ ├── Info.plist │ │ │ ├── LICENSE.txt │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ └── Rollbar │ │ ├── Release-iOS-Kit-iphonesimulator │ │ ├── Rollbar.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── Rollbar │ │ └── Rollbar.framework │ │ │ ├── Headers │ │ │ ├── DeployApiCallResult.h │ │ │ ├── Deployment.h │ │ │ ├── DeploymentDetails.h │ │ │ ├── Rollbar.h │ │ │ ├── RollbarConfiguration.h │ │ │ ├── RollbarDeploysManager.h │ │ │ ├── RollbarDeploysProtocol.h │ │ │ ├── RollbarFramework.h │ │ │ ├── RollbarJSONFriendlyObject.h │ │ │ ├── RollbarJSONFriendlyProtocol.h │ │ │ ├── RollbarKSCrashInstallation.h │ │ │ ├── RollbarKSCrashReportSink.h │ │ │ ├── RollbarKit_iOS.h │ │ │ ├── RollbarLevel.h │ │ │ ├── RollbarNotifier.h │ │ │ ├── RollbarTelemetry.h │ │ │ └── RollbarTelemetryType.h │ │ │ ├── Info.plist │ │ │ ├── LICENSE.TXT │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── Rollbar │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── Release-iOS-Kit-universal │ │ └── Rollbar.framework │ │ │ ├── Headers │ │ │ ├── DeployApiCallResult.h │ │ │ ├── Deployment.h │ │ │ ├── DeploymentDetails.h │ │ │ ├── Rollbar.h │ │ │ ├── RollbarConfiguration.h │ │ │ ├── RollbarDeploysManager.h │ │ │ ├── RollbarDeploysProtocol.h │ │ │ ├── RollbarFramework.h │ │ │ ├── RollbarJSONFriendlyObject.h │ │ │ ├── RollbarJSONFriendlyProtocol.h │ │ │ ├── RollbarKSCrashInstallation.h │ │ │ ├── RollbarKSCrashReportSink.h │ │ │ ├── RollbarKit_iOS.h │ │ │ ├── RollbarLevel.h │ │ │ ├── RollbarNotifier.h │ │ │ ├── RollbarTelemetry.h │ │ │ └── RollbarTelemetryType.h │ │ │ ├── Info.plist │ │ │ ├── LICENSE.txt │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ └── Rollbar │ │ ├── Release-iOS-iphoneos │ │ ├── include │ │ │ └── Rollbar │ │ │ │ └── Rollbar_iOS.h │ │ ├── libRollbar.a │ │ └── usr │ │ │ └── local │ │ │ └── include │ │ │ ├── DeployApiCallResult.h │ │ │ ├── Deployment.h │ │ │ ├── DeploymentDetails.h │ │ │ ├── Rollbar.h │ │ │ ├── RollbarConfiguration.h │ │ │ ├── RollbarDeploysManager.h │ │ │ ├── RollbarDeploysProtocol.h │ │ │ ├── RollbarJSONFriendlyObject.h │ │ │ ├── RollbarJSONFriendlyProtocol.h │ │ │ ├── RollbarKSCrashInstallation.h │ │ │ ├── RollbarLevel.h │ │ │ ├── RollbarNotifier.h │ │ │ ├── RollbarTelemetry.h │ │ │ └── RollbarTelemetryType.h │ │ ├── Release-iOS-iphonesimulator │ │ ├── include │ │ │ └── Rollbar │ │ │ │ └── Rollbar_iOS.h │ │ ├── libRollbar.a │ │ └── usr │ │ │ └── local │ │ │ └── include │ │ │ ├── DeployApiCallResult.h │ │ │ ├── Deployment.h │ │ │ ├── DeploymentDetails.h │ │ │ ├── Rollbar.h │ │ │ ├── RollbarConfiguration.h │ │ │ ├── RollbarDeploysManager.h │ │ │ ├── RollbarDeploysProtocol.h │ │ │ ├── RollbarJSONFriendlyObject.h │ │ │ ├── RollbarJSONFriendlyProtocol.h │ │ │ ├── RollbarKSCrashInstallation.h │ │ │ ├── RollbarLevel.h │ │ │ ├── RollbarNotifier.h │ │ │ ├── RollbarTelemetry.h │ │ │ └── RollbarTelemetryType.h │ │ ├── Release-iOS-universal │ │ ├── include │ │ │ ├── DeployApiCallResult.h │ │ │ ├── Deployment.h │ │ │ ├── DeploymentDetails.h │ │ │ ├── Rollbar.h │ │ │ ├── Rollbar │ │ │ │ └── Rollbar_iOS.h │ │ │ ├── RollbarConfiguration.h │ │ │ ├── RollbarDeploysManager.h │ │ │ ├── RollbarDeploysProtocol.h │ │ │ ├── RollbarJSONFriendlyObject.h │ │ │ ├── RollbarJSONFriendlyProtocol.h │ │ │ ├── RollbarKSCrashInstallation.h │ │ │ ├── RollbarLevel.h │ │ │ ├── RollbarNotifier.h │ │ │ ├── RollbarTelemetry.h │ │ │ └── RollbarTelemetryType.h │ │ └── libRollbar.a │ │ ├── Release-macOS-Kit │ │ ├── Rollbar.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── Rollbar │ │ └── Rollbar.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── Resources │ │ │ ├── Rollbar │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── DeployApiCallResult.h │ │ │ │ ├── Deployment.h │ │ │ │ ├── DeploymentDetails.h │ │ │ │ ├── Rollbar.h │ │ │ │ ├── RollbarConfiguration.h │ │ │ │ ├── RollbarDeploysManager.h │ │ │ │ ├── RollbarDeploysProtocol.h │ │ │ │ ├── RollbarFramework.h │ │ │ │ ├── RollbarJSONFriendlyObject.h │ │ │ │ ├── RollbarJSONFriendlyProtocol.h │ │ │ │ ├── RollbarKSCrashInstallation.h │ │ │ │ ├── RollbarKSCrashReportSink.h │ │ │ │ ├── RollbarKit_macOS.h │ │ │ │ ├── RollbarLevel.h │ │ │ │ ├── RollbarNotifier.h │ │ │ │ ├── RollbarTelemetry.h │ │ │ │ └── RollbarTelemetryType.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.txt │ │ │ └── Rollbar │ │ │ └── Current │ │ └── Release-macOS │ │ ├── libRollbar.a │ │ └── usr │ │ └── local │ │ └── include │ │ ├── DeployApiCallResult.h │ │ ├── Deployment.h │ │ ├── DeploymentDetails.h │ │ ├── Rollbar.h │ │ ├── RollbarConfiguration.h │ │ ├── RollbarDeploysManager.h │ │ ├── RollbarDeploysProtocol.h │ │ ├── RollbarJSONFriendlyObject.h │ │ ├── RollbarJSONFriendlyProtocol.h │ │ ├── RollbarKSCrashInstallation.h │ │ ├── RollbarLevel.h │ │ ├── RollbarNotifier.h │ │ ├── RollbarTelemetry.h │ │ └── RollbarTelemetryType.h ├── macOSAppWithRollbarCocoaPod │ ├── Podfile │ ├── Podfile.lock │ ├── macOSAppWithRollbarCocoaPod.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── macOSAppWithRollbarCocoaPod.xcworkspace │ │ └── contents.xcworkspacedata │ └── macOSAppWithRollbarCocoaPod │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── macOSAppWithRollbarCocoaPod.entitlements │ │ └── main.m ├── macOSAppWithSPM-ObjC │ ├── macOSAppWithSPM-ObjC.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── macOSAppWithSPM-ObjC │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── macOSAppWithSPM_ObjC.entitlements │ │ └── main.m ├── macOSAppWithSPM │ ├── Rollbar_FullPaths.h │ ├── macOSAppWithSPM-Bridging-Header.h │ ├── macOSAppWithSPM.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── macOSAppWithSPM │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.swift │ │ └── macOSAppWithSPM.entitlements ├── macOScmdTool │ ├── macOScmdTool.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── macOScmdTool │ │ └── main.m └── macOScmdTool_Workspace │ ├── macOScmdTool.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── macOScmdTool │ └── main.m ├── LICENSE ├── README.md ├── Rollbar.podspec ├── Rollbar.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── Rollbar-iOS-UniversalDistribution.xcscheme │ ├── Rollbar-iOS.xcscheme │ ├── Rollbar-macOS.xcscheme │ ├── RollbarKit-iOS-UniversalDistribution.xcscheme │ ├── RollbarKit-iOS.xcscheme │ ├── RollbarKit-macOS.xcscheme │ └── RollbarSDKReleaseDistributable.xcscheme ├── Rollbar ├── Abstraction_Common │ ├── JSONSupport.h │ └── Persistent.h ├── Abstraction_DTO │ ├── DataTransferObject+CustomData.h │ ├── DataTransferObject+CustomData.m │ ├── DataTransferObject+Protected.h │ ├── DataTransferObject+Protected.m │ ├── DataTransferObject.h │ ├── DataTransferObject.m │ └── RollbarDTOAbstraction.h ├── Abstraction_Deploys │ └── RollbarDeploysProtocol.h ├── Common │ ├── TriStateFlag.h │ └── TriStateFlag.m ├── Deploys │ ├── RollbarDeploys.h │ ├── RollbarDeploysManager.h │ └── RollbarDeploysManager.m ├── Deploys_DTOs │ ├── DeployApiCallOutcome.h │ ├── DeployApiCallOutcome.m │ ├── DeployApiCallResult.h │ ├── DeployApiCallResult.m │ ├── Deployment.h │ ├── Deployment.m │ ├── DeploymentDetails.h │ ├── DeploymentDetails.m │ └── RollbarDeploysDTOs.h ├── Notifier │ ├── NSJSONSerialization+Rollbar.h │ ├── NSJSONSerialization+Rollbar.m │ ├── RollbarCachesDirectory.h │ ├── RollbarCachesDirectory.m │ ├── RollbarConfiguration.h │ ├── RollbarConfiguration.m │ ├── RollbarFacade.h │ ├── RollbarFacade.m │ ├── RollbarFileReader.h │ ├── RollbarFileReader.m │ ├── RollbarKSCrashInstallation.h │ ├── RollbarKSCrashInstallation.m │ ├── RollbarKSCrashReportSink.h │ ├── RollbarKSCrashReportSink.m │ ├── RollbarLog.h │ ├── RollbarLog.m │ ├── RollbarNotifier.h │ ├── RollbarNotifier.m │ ├── RollbarPayloadTruncator.h │ ├── RollbarPayloadTruncator.m │ ├── RollbarReachability.h │ ├── RollbarReachability.m │ ├── RollbarTelemetry.h │ ├── RollbarTelemetry.m │ ├── RollbarThread.h │ ├── RollbarThread.m │ ├── SdkLog.h │ └── SdkLog.m ├── Notifier_DTOs │ ├── CaptureIpType.h │ ├── CaptureIpType.m │ ├── HttpMethod.h │ ├── HttpMethod.m │ ├── RollbarAppLanguage.h │ ├── RollbarAppLanguage.m │ ├── RollbarBody.h │ ├── RollbarBody.m │ ├── RollbarCallStackFrame.h │ ├── RollbarCallStackFrame.m │ ├── RollbarCallStackFrameContext.h │ ├── RollbarCallStackFrameContext.m │ ├── RollbarClient.h │ ├── RollbarClient.m │ ├── RollbarConfig.h │ ├── RollbarConfig.m │ ├── RollbarCrashReport.h │ ├── RollbarCrashReport.m │ ├── RollbarData.h │ ├── RollbarData.m │ ├── RollbarDestination.h │ ├── RollbarDestination.m │ ├── RollbarDeveloperOptions.h │ ├── RollbarDeveloperOptions.m │ ├── RollbarException.h │ ├── RollbarException.m │ ├── RollbarJavascript.h │ ├── RollbarJavascript.m │ ├── RollbarLevel.h │ ├── RollbarLevel.m │ ├── RollbarLoggingOptions.h │ ├── RollbarLoggingOptions.m │ ├── RollbarMessage.h │ ├── RollbarMessage.m │ ├── RollbarModule.h │ ├── RollbarModule.m │ ├── RollbarPayload.h │ ├── RollbarPayload.m │ ├── RollbarPayloadDTOs.h │ ├── RollbarPerson.h │ ├── RollbarPerson.m │ ├── RollbarProxy.h │ ├── RollbarProxy.m │ ├── RollbarRequest.h │ ├── RollbarRequest.m │ ├── RollbarScrubbingOptions.h │ ├── RollbarScrubbingOptions.m │ ├── RollbarServer.h │ ├── RollbarServer.m │ ├── RollbarServerConfig.h │ ├── RollbarServerConfig.m │ ├── RollbarSource.h │ ├── RollbarSource.m │ ├── RollbarTelemetryBody.h │ ├── RollbarTelemetryBody.m │ ├── RollbarTelemetryConnectivityBody.h │ ├── RollbarTelemetryConnectivityBody.m │ ├── RollbarTelemetryErrorBody.h │ ├── RollbarTelemetryErrorBody.m │ ├── RollbarTelemetryEvent.h │ ├── RollbarTelemetryEvent.m │ ├── RollbarTelemetryLogBody.h │ ├── RollbarTelemetryLogBody.m │ ├── RollbarTelemetryManualBody.h │ ├── RollbarTelemetryManualBody.m │ ├── RollbarTelemetryNavigationBody.h │ ├── RollbarTelemetryNavigationBody.m │ ├── RollbarTelemetryNetworkBody.h │ ├── RollbarTelemetryNetworkBody.m │ ├── RollbarTelemetryOptions.h │ ├── RollbarTelemetryOptions.m │ ├── RollbarTelemetryType.h │ ├── RollbarTelemetryType.m │ ├── RollbarTelemetryViewBody.h │ ├── RollbarTelemetryViewBody.m │ ├── RollbarTrace.h │ └── RollbarTrace.m └── Rollbar-Prefix.pch ├── RollbarFramework ├── Info.plist ├── Rollbar.h └── module.modulemap ├── RollbarKit-iOSTests ├── Info.plist └── RollbarKit_iOSTests.m ├── RollbarKit-macOSTests ├── Info.plist └── RollbarKit_macOSTests.m ├── RollbarTests ├── DTOsTests.m ├── PayloadTruncationTests.m ├── RollbarConfigurationTests.m ├── RollbarDeploysTests.m ├── RollbarTelemetryTests.m ├── RollbarTestUtil.h ├── RollbarTestUtil.m ├── RollbarTests-Info.plist ├── RollbarTests.m └── en.lproj │ └── InfoPlist.strings ├── azure-pipelines.yml ├── rollbar-logo.png └── upload_dsym.py /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl/Info.plist -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl/Knob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl/Knob.swift -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl/KnobControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl/KnobControl.h -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl/KnobRender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl/KnobRender.swift -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl/RotationGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobControl/KnobControl/RotationGestureRecognizer.swift -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon29@2x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon76@2x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/Icon83.5@2x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-20@2x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-20@3x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-29@2x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-29@3x copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-29@3x copy.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-40@2x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-40@3x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-60@2x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/AppIcon.appiconset/icon-app-60@3x.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/rw-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/rw-logo.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/rw-logo.imageset/Razewarelogo_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/rw-logo.imageset/Razewarelogo_1024.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/rwdevcon-bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/rwdevcon-bg.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/rwdevcon-bg.imageset/rwdevcon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Assets.xcassets/rwdevcon-bg.imageset/rwdevcon-bg.png -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/Info.plist -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/KnobShowcase/KnobShowcase/ViewController.swift -------------------------------------------------------------------------------- /Examples/RollbarWithinAnotherFramework/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/RollbarWithinAnotherFramework/ReadMe.md -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/Podfile -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/Podfile.lock -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/AppDelegate.h -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/AppDelegate.m -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/Info.plist -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/ViewController.h -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/ViewController.m -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod.entitlements -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarCocoaPod/iOSAppWithRollbarCocoaPod/main.m -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/Cartfile -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/Cartfile.resolved -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/ReadMe.md -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/AppDelegate.h -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/AppDelegate.m -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/Info.plist -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/SceneDelegate.h -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/SceneDelegate.m -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/ViewController.h -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/ViewController.m -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/iOSAppWithRollbarViaCarthage_Objective-C/iOSAppWithRollbarViaCarthage_Objective-C/main.m -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/input.xcfilelist: -------------------------------------------------------------------------------- 1 | $(SRCROOT)/Carthage/Build/iOS/Rollbar.framework 2 | -------------------------------------------------------------------------------- /Examples/iOSAppWithRollbarViaCarthage_Objective-C/output.xcfilelist: -------------------------------------------------------------------------------- 1 | $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/Rollbar.framework 2 | -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/93E04F49-6E59-3114-B2FA-759CAB1CDC67.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/93E04F49-6E59-3114-B2FA-759CAB1CDC67.bcsymbolmap -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/A9B206AF-D13D-3A80-A603-D6BF6C166666.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/A9B206AF-D13D-3A80-A603-D6BF6C166666.bcsymbolmap -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework.dSYM/Contents/Resources/DWARF/Rollbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework.dSYM/Contents/Resources/DWARF/Rollbar -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/DeployApiCallResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/DeployApiCallResult.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/Deployment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/Deployment.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/DeploymentDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/DeploymentDetails.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/Rollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/Rollbar.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarConfiguration.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarDeploysManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarDeploysManager.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarDeploysProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarDeploysProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarFramework.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarJSONFriendlyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarJSONFriendlyObject.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarJSONFriendlyProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarJSONFriendlyProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarKSCrashInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarKSCrashInstallation.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarKSCrashReportSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarKSCrashReportSink.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarKit_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarKit_iOS.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarLevel.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarNotifier.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarTelemetry.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarTelemetryType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Headers/RollbarTelemetryType.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Info.plist -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/LICENSE.txt -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Rollbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphoneos/Rollbar.framework/Rollbar -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework.dSYM/Contents/Resources/DWARF/Rollbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework.dSYM/Contents/Resources/DWARF/Rollbar -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/DeployApiCallResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/DeployApiCallResult.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/Deployment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/Deployment.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/DeploymentDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/DeploymentDetails.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/Rollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/Rollbar.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarConfiguration.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarDeploysManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarDeploysManager.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarDeploysProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarDeploysProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarFramework.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarJSONFriendlyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarJSONFriendlyObject.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarJSONFriendlyProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarJSONFriendlyProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarKSCrashInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarKSCrashInstallation.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarKSCrashReportSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarKSCrashReportSink.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarKit_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarKit_iOS.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarLevel.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarNotifier.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarTelemetry.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarTelemetryType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Headers/RollbarTelemetryType.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Info.plist -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/LICENSE.TXT -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Rollbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/Rollbar -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-iphonesimulator/Rollbar.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/DeployApiCallResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/DeployApiCallResult.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/Deployment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/Deployment.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/DeploymentDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/DeploymentDetails.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/Rollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/Rollbar.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarConfiguration.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarDeploysManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarDeploysManager.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarDeploysProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarDeploysProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarFramework.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarJSONFriendlyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarJSONFriendlyObject.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarJSONFriendlyProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarJSONFriendlyProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarKSCrashInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarKSCrashInstallation.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarKSCrashReportSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarKSCrashReportSink.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarKit_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarKit_iOS.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarLevel.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarNotifier.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarTelemetry.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarTelemetryType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Headers/RollbarTelemetryType.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Info.plist -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/LICENSE.txt -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Rollbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-Kit-universal/Rollbar.framework/Rollbar -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/include/Rollbar/Rollbar_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/include/Rollbar/Rollbar_iOS.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/libRollbar.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/libRollbar.a -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/DeployApiCallResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/DeployApiCallResult.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/Deployment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/Deployment.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/DeploymentDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/DeploymentDetails.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/Rollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/Rollbar.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarConfiguration.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarDeploysManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarDeploysManager.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarDeploysProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarDeploysProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarJSONFriendlyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarJSONFriendlyObject.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarJSONFriendlyProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarJSONFriendlyProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarKSCrashInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarKSCrashInstallation.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarLevel.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarNotifier.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarTelemetry.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarTelemetryType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphoneos/usr/local/include/RollbarTelemetryType.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/include/Rollbar/Rollbar_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/include/Rollbar/Rollbar_iOS.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/libRollbar.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/libRollbar.a -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/DeployApiCallResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/DeployApiCallResult.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/Deployment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/Deployment.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/DeploymentDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/DeploymentDetails.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/Rollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/Rollbar.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarConfiguration.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarDeploysManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarDeploysManager.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarDeploysProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarDeploysProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarJSONFriendlyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarJSONFriendlyObject.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarJSONFriendlyProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarJSONFriendlyProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarKSCrashInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarKSCrashInstallation.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarLevel.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarNotifier.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarTelemetry.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarTelemetryType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-iphonesimulator/usr/local/include/RollbarTelemetryType.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/DeployApiCallResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/DeployApiCallResult.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/Deployment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/Deployment.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/DeploymentDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/DeploymentDetails.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/Rollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/Rollbar.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/Rollbar/Rollbar_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/Rollbar/Rollbar_iOS.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/RollbarConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/RollbarConfiguration.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/RollbarDeploysManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/RollbarDeploysManager.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/RollbarDeploysProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/RollbarDeploysProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/RollbarJSONFriendlyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/RollbarJSONFriendlyObject.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/RollbarJSONFriendlyProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/RollbarJSONFriendlyProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/RollbarKSCrashInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/RollbarKSCrashInstallation.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/RollbarLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/RollbarLevel.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/RollbarNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/RollbarNotifier.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/RollbarTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/RollbarTelemetry.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/include/RollbarTelemetryType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/include/RollbarTelemetryType.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-iOS-universal/libRollbar.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-iOS-universal/libRollbar.a -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework.dSYM/Contents/Resources/DWARF/Rollbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework.dSYM/Contents/Resources/DWARF/Rollbar -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Rollbar: -------------------------------------------------------------------------------- 1 | Versions/Current/Rollbar -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/DeployApiCallResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/DeployApiCallResult.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/Deployment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/Deployment.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/DeploymentDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/DeploymentDetails.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/Rollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/Rollbar.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarConfiguration.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarDeploysManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarDeploysManager.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarDeploysProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarDeploysProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarFramework.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarJSONFriendlyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarJSONFriendlyObject.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarJSONFriendlyProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarJSONFriendlyProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarKSCrashInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarKSCrashInstallation.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarKSCrashReportSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarKSCrashReportSink.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarKit_macOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarKit_macOS.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarLevel.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarNotifier.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarTelemetry.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarTelemetryType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Headers/RollbarTelemetryType.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Resources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Resources/LICENSE.txt -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Rollbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/A/Rollbar -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS-Kit/Rollbar.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/libRollbar.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/libRollbar.a -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/DeployApiCallResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/DeployApiCallResult.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/Deployment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/Deployment.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/DeploymentDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/DeploymentDetails.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/Rollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/Rollbar.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarConfiguration.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarDeploysManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarDeploysManager.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarDeploysProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarDeploysProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarJSONFriendlyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarJSONFriendlyObject.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarJSONFriendlyProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarJSONFriendlyProtocol.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarKSCrashInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarKSCrashInstallation.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarLevel.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarNotifier.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarTelemetry.h -------------------------------------------------------------------------------- /Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarTelemetryType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/libs/Rollbar/Release-macOS/usr/local/include/RollbarTelemetryType.h -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/Podfile -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/Podfile.lock -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/AppDelegate.h -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/AppDelegate.m -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/Info.plist -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/ViewController.h -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/ViewController.m -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod.entitlements -------------------------------------------------------------------------------- /Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithRollbarCocoaPod/macOSAppWithRollbarCocoaPod/main.m -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/AppDelegate.h -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/AppDelegate.m -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/Info.plist -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/ViewController.h -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/ViewController.m -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/macOSAppWithSPM_ObjC.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/macOSAppWithSPM_ObjC.entitlements -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM-ObjC/macOSAppWithSPM-ObjC/main.m -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/Rollbar_FullPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/Rollbar_FullPaths.h -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM-Bridging-Header.h -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM/Info.plist -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM/ViewController.swift -------------------------------------------------------------------------------- /Examples/macOSAppWithSPM/macOSAppWithSPM/macOSAppWithSPM.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOSAppWithSPM/macOSAppWithSPM/macOSAppWithSPM.entitlements -------------------------------------------------------------------------------- /Examples/macOScmdTool/macOScmdTool.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOScmdTool/macOScmdTool.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/macOScmdTool/macOScmdTool.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOScmdTool/macOScmdTool.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/macOScmdTool/macOScmdTool/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOScmdTool/macOScmdTool/main.m -------------------------------------------------------------------------------- /Examples/macOScmdTool_Workspace/macOScmdTool.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOScmdTool_Workspace/macOScmdTool.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/macOScmdTool_Workspace/macOScmdTool.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOScmdTool_Workspace/macOScmdTool.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/macOScmdTool_Workspace/macOScmdTool.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOScmdTool_Workspace/macOScmdTool.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Examples/macOScmdTool_Workspace/macOScmdTool/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Examples/macOScmdTool_Workspace/macOScmdTool/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/README.md -------------------------------------------------------------------------------- /Rollbar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.podspec -------------------------------------------------------------------------------- /Rollbar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Rollbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Rollbar.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Rollbar.xcodeproj/xcshareddata/xcschemes/Rollbar-iOS-UniversalDistribution.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.xcodeproj/xcshareddata/xcschemes/Rollbar-iOS-UniversalDistribution.xcscheme -------------------------------------------------------------------------------- /Rollbar.xcodeproj/xcshareddata/xcschemes/Rollbar-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.xcodeproj/xcshareddata/xcschemes/Rollbar-iOS.xcscheme -------------------------------------------------------------------------------- /Rollbar.xcodeproj/xcshareddata/xcschemes/Rollbar-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.xcodeproj/xcshareddata/xcschemes/Rollbar-macOS.xcscheme -------------------------------------------------------------------------------- /Rollbar.xcodeproj/xcshareddata/xcschemes/RollbarKit-iOS-UniversalDistribution.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.xcodeproj/xcshareddata/xcschemes/RollbarKit-iOS-UniversalDistribution.xcscheme -------------------------------------------------------------------------------- /Rollbar.xcodeproj/xcshareddata/xcschemes/RollbarKit-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.xcodeproj/xcshareddata/xcschemes/RollbarKit-iOS.xcscheme -------------------------------------------------------------------------------- /Rollbar.xcodeproj/xcshareddata/xcschemes/RollbarKit-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.xcodeproj/xcshareddata/xcschemes/RollbarKit-macOS.xcscheme -------------------------------------------------------------------------------- /Rollbar.xcodeproj/xcshareddata/xcschemes/RollbarSDKReleaseDistributable.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar.xcodeproj/xcshareddata/xcschemes/RollbarSDKReleaseDistributable.xcscheme -------------------------------------------------------------------------------- /Rollbar/Abstraction_Common/JSONSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Abstraction_Common/JSONSupport.h -------------------------------------------------------------------------------- /Rollbar/Abstraction_Common/Persistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Abstraction_Common/Persistent.h -------------------------------------------------------------------------------- /Rollbar/Abstraction_DTO/DataTransferObject+CustomData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Abstraction_DTO/DataTransferObject+CustomData.h -------------------------------------------------------------------------------- /Rollbar/Abstraction_DTO/DataTransferObject+CustomData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Abstraction_DTO/DataTransferObject+CustomData.m -------------------------------------------------------------------------------- /Rollbar/Abstraction_DTO/DataTransferObject+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Abstraction_DTO/DataTransferObject+Protected.h -------------------------------------------------------------------------------- /Rollbar/Abstraction_DTO/DataTransferObject+Protected.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Abstraction_DTO/DataTransferObject+Protected.m -------------------------------------------------------------------------------- /Rollbar/Abstraction_DTO/DataTransferObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Abstraction_DTO/DataTransferObject.h -------------------------------------------------------------------------------- /Rollbar/Abstraction_DTO/DataTransferObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Abstraction_DTO/DataTransferObject.m -------------------------------------------------------------------------------- /Rollbar/Abstraction_DTO/RollbarDTOAbstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Abstraction_DTO/RollbarDTOAbstraction.h -------------------------------------------------------------------------------- /Rollbar/Abstraction_Deploys/RollbarDeploysProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Abstraction_Deploys/RollbarDeploysProtocol.h -------------------------------------------------------------------------------- /Rollbar/Common/TriStateFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Common/TriStateFlag.h -------------------------------------------------------------------------------- /Rollbar/Common/TriStateFlag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Common/TriStateFlag.m -------------------------------------------------------------------------------- /Rollbar/Deploys/RollbarDeploys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys/RollbarDeploys.h -------------------------------------------------------------------------------- /Rollbar/Deploys/RollbarDeploysManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys/RollbarDeploysManager.h -------------------------------------------------------------------------------- /Rollbar/Deploys/RollbarDeploysManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys/RollbarDeploysManager.m -------------------------------------------------------------------------------- /Rollbar/Deploys_DTOs/DeployApiCallOutcome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys_DTOs/DeployApiCallOutcome.h -------------------------------------------------------------------------------- /Rollbar/Deploys_DTOs/DeployApiCallOutcome.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys_DTOs/DeployApiCallOutcome.m -------------------------------------------------------------------------------- /Rollbar/Deploys_DTOs/DeployApiCallResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys_DTOs/DeployApiCallResult.h -------------------------------------------------------------------------------- /Rollbar/Deploys_DTOs/DeployApiCallResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys_DTOs/DeployApiCallResult.m -------------------------------------------------------------------------------- /Rollbar/Deploys_DTOs/Deployment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys_DTOs/Deployment.h -------------------------------------------------------------------------------- /Rollbar/Deploys_DTOs/Deployment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys_DTOs/Deployment.m -------------------------------------------------------------------------------- /Rollbar/Deploys_DTOs/DeploymentDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys_DTOs/DeploymentDetails.h -------------------------------------------------------------------------------- /Rollbar/Deploys_DTOs/DeploymentDetails.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys_DTOs/DeploymentDetails.m -------------------------------------------------------------------------------- /Rollbar/Deploys_DTOs/RollbarDeploysDTOs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Deploys_DTOs/RollbarDeploysDTOs.h -------------------------------------------------------------------------------- /Rollbar/Notifier/NSJSONSerialization+Rollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/NSJSONSerialization+Rollbar.h -------------------------------------------------------------------------------- /Rollbar/Notifier/NSJSONSerialization+Rollbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/NSJSONSerialization+Rollbar.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarCachesDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarCachesDirectory.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarCachesDirectory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarCachesDirectory.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarConfiguration.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarConfiguration.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarFacade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarFacade.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarFacade.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarFacade.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarFileReader.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarFileReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarFileReader.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarKSCrashInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarKSCrashInstallation.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarKSCrashInstallation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarKSCrashInstallation.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarKSCrashReportSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarKSCrashReportSink.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarKSCrashReportSink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarKSCrashReportSink.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarLog.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarLog.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarNotifier.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarNotifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarNotifier.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarPayloadTruncator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarPayloadTruncator.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarPayloadTruncator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarPayloadTruncator.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarReachability.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarReachability.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarTelemetry.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarTelemetry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarTelemetry.m -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarThread.h -------------------------------------------------------------------------------- /Rollbar/Notifier/RollbarThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/RollbarThread.m -------------------------------------------------------------------------------- /Rollbar/Notifier/SdkLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/SdkLog.h -------------------------------------------------------------------------------- /Rollbar/Notifier/SdkLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier/SdkLog.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/CaptureIpType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/CaptureIpType.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/CaptureIpType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/CaptureIpType.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/HttpMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/HttpMethod.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/HttpMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/HttpMethod.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarAppLanguage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarAppLanguage.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarAppLanguage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarAppLanguage.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarBody.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarBody.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarCallStackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarCallStackFrame.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarCallStackFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarCallStackFrame.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarCallStackFrameContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarCallStackFrameContext.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarCallStackFrameContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarCallStackFrameContext.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarClient.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarClient.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarConfig.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarConfig.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarCrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarCrashReport.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarCrashReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarCrashReport.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarData.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarData.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarDestination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarDestination.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarDestination.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarDestination.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarDeveloperOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarDeveloperOptions.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarDeveloperOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarDeveloperOptions.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarException.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarException.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarJavascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarJavascript.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarJavascript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarJavascript.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarLevel.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarLevel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarLevel.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarLoggingOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarLoggingOptions.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarLoggingOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarLoggingOptions.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarMessage.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarMessage.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarModule.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarModule.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarPayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarPayload.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarPayload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarPayload.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarPayloadDTOs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarPayloadDTOs.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarPerson.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarPerson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarPerson.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarProxy.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarProxy.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarRequest.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarRequest.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarScrubbingOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarScrubbingOptions.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarScrubbingOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarScrubbingOptions.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarServer.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarServer.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarServerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarServerConfig.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarServerConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarServerConfig.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarSource.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarSource.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryBody.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryBody.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryConnectivityBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryConnectivityBody.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryConnectivityBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryConnectivityBody.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryErrorBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryErrorBody.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryErrorBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryErrorBody.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryEvent.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryEvent.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryLogBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryLogBody.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryLogBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryLogBody.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryManualBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryManualBody.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryManualBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryManualBody.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryNavigationBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryNavigationBody.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryNavigationBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryNavigationBody.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryNetworkBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryNetworkBody.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryNetworkBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryNetworkBody.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryOptions.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryOptions.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryType.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryType.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryViewBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryViewBody.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTelemetryViewBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTelemetryViewBody.m -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTrace.h -------------------------------------------------------------------------------- /Rollbar/Notifier_DTOs/RollbarTrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Notifier_DTOs/RollbarTrace.m -------------------------------------------------------------------------------- /Rollbar/Rollbar-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/Rollbar/Rollbar-Prefix.pch -------------------------------------------------------------------------------- /RollbarFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarFramework/Info.plist -------------------------------------------------------------------------------- /RollbarFramework/Rollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarFramework/Rollbar.h -------------------------------------------------------------------------------- /RollbarFramework/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarFramework/module.modulemap -------------------------------------------------------------------------------- /RollbarKit-iOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarKit-iOSTests/Info.plist -------------------------------------------------------------------------------- /RollbarKit-iOSTests/RollbarKit_iOSTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarKit-iOSTests/RollbarKit_iOSTests.m -------------------------------------------------------------------------------- /RollbarKit-macOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarKit-macOSTests/Info.plist -------------------------------------------------------------------------------- /RollbarKit-macOSTests/RollbarKit_macOSTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarKit-macOSTests/RollbarKit_macOSTests.m -------------------------------------------------------------------------------- /RollbarTests/DTOsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarTests/DTOsTests.m -------------------------------------------------------------------------------- /RollbarTests/PayloadTruncationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarTests/PayloadTruncationTests.m -------------------------------------------------------------------------------- /RollbarTests/RollbarConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarTests/RollbarConfigurationTests.m -------------------------------------------------------------------------------- /RollbarTests/RollbarDeploysTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarTests/RollbarDeploysTests.m -------------------------------------------------------------------------------- /RollbarTests/RollbarTelemetryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarTests/RollbarTelemetryTests.m -------------------------------------------------------------------------------- /RollbarTests/RollbarTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarTests/RollbarTestUtil.h -------------------------------------------------------------------------------- /RollbarTests/RollbarTestUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarTests/RollbarTestUtil.m -------------------------------------------------------------------------------- /RollbarTests/RollbarTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarTests/RollbarTests-Info.plist -------------------------------------------------------------------------------- /RollbarTests/RollbarTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/RollbarTests/RollbarTests.m -------------------------------------------------------------------------------- /RollbarTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /rollbar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/rollbar-logo.png -------------------------------------------------------------------------------- /upload_dsym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-ios/HEAD/upload_dsym.py --------------------------------------------------------------------------------