├── .gitattributes ├── .gitignore ├── Classes ├── BITActivityIndicatorButton.h ├── BITActivityIndicatorButton.m ├── BITAppStoreHeader.h ├── BITAppStoreHeader.m ├── BITAppVersionMetaInfo.h ├── BITAppVersionMetaInfo.m ├── BITApplication.h ├── BITApplication.m ├── BITArrowImageAnnotation.h ├── BITArrowImageAnnotation.m ├── BITAttributedLabel.h ├── BITAttributedLabel.m ├── BITAuthenticationViewController.h ├── BITAuthenticationViewController.m ├── BITAuthenticator.h ├── BITAuthenticator.m ├── BITAuthenticator_Private.h ├── BITBase.h ├── BITBase.m ├── BITBlurImageAnnotation.h ├── BITBlurImageAnnotation.m ├── BITCategoryContainer.h ├── BITCategoryContainer.m ├── BITChannel.h ├── BITChannel.m ├── BITChannelPrivate.h ├── BITCrashAttachment.h ├── BITCrashAttachment.m ├── BITCrashCXXExceptionHandler.h ├── BITCrashCXXExceptionHandler.mm ├── BITCrashDetails.h ├── BITCrashDetails.m ├── BITCrashDetailsPrivate.h ├── BITCrashManager.h ├── BITCrashManager.m ├── BITCrashManagerDelegate.h ├── BITCrashManagerPrivate.h ├── BITCrashMetaData.h ├── BITCrashMetaData.m ├── BITCrashReportTextFormatter.h ├── BITCrashReportTextFormatter.m ├── BITCrashReportTextFormatterPrivate.h ├── BITData.h ├── BITData.m ├── BITDevice.h ├── BITDevice.m ├── BITDomain.h ├── BITDomain.m ├── BITEnvelope.h ├── BITEnvelope.m ├── BITEventData.h ├── BITEventData.m ├── BITFeedbackActivity.h ├── BITFeedbackActivity.m ├── BITFeedbackComposeViewController.h ├── BITFeedbackComposeViewController.m ├── BITFeedbackComposeViewControllerDelegate.h ├── BITFeedbackListViewCell.h ├── BITFeedbackListViewCell.m ├── BITFeedbackListViewController.h ├── BITFeedbackListViewController.m ├── BITFeedbackManager.h ├── BITFeedbackManager.m ├── BITFeedbackManagerDelegate.h ├── BITFeedbackManagerPrivate.h ├── BITFeedbackMessage.h ├── BITFeedbackMessage.m ├── BITFeedbackMessageAttachment.h ├── BITFeedbackMessageAttachment.m ├── BITFeedbackUserDataViewController.h ├── BITFeedbackUserDataViewController.m ├── BITGZIP.h ├── BITHockeyAppClient.h ├── BITHockeyAppClient.m ├── BITHockeyAttachment.h ├── BITHockeyAttachment.m ├── BITHockeyBaseManager.h ├── BITHockeyBaseManager.m ├── BITHockeyBaseManagerPrivate.h ├── BITHockeyBaseViewController.h ├── BITHockeyBaseViewController.m ├── BITHockeyHelper+Application.h ├── BITHockeyHelper+Application.m ├── BITHockeyHelper.h ├── BITHockeyHelper.m ├── BITHockeyLogger.h ├── BITHockeyLogger.m ├── BITHockeyLoggerPrivate.h ├── BITHockeyManager.h ├── BITHockeyManager.m ├── BITHockeyManagerDelegate.h ├── BITImageAnnotation.h ├── BITImageAnnotation.m ├── BITImageAnnotationViewController.h ├── BITImageAnnotationViewController.m ├── BITInternal.h ├── BITInternal.m ├── BITKeychainUtils.h ├── BITKeychainUtils.m ├── BITMetricsManager.h ├── BITMetricsManager.m ├── BITMetricsManagerPrivate.h ├── BITPersistence.h ├── BITPersistence.m ├── BITPersistencePrivate.h ├── BITRectangleImageAnnotation.h ├── BITRectangleImageAnnotation.m ├── BITSender.h ├── BITSender.m ├── BITSession.h ├── BITSession.m ├── BITSessionState.h ├── BITSessionStateData.h ├── BITSessionStateData.m ├── BITStoreButton.h ├── BITStoreButton.m ├── BITStoreUpdateManager.h ├── BITStoreUpdateManager.m ├── BITStoreUpdateManagerDelegate.h ├── BITStoreUpdateManagerPrivate.h ├── BITTelemetryContext.h ├── BITTelemetryContext.m ├── BITTelemetryData.h ├── BITTelemetryData.m ├── BITTelemetryObject.h ├── BITTelemetryObject.m ├── BITUpdateManager.h ├── BITUpdateManager.m ├── BITUpdateManagerDelegate.h ├── BITUpdateManagerPrivate.h ├── BITUpdateViewController.h ├── BITUpdateViewController.m ├── BITUpdateViewControllerPrivate.h ├── BITUser.h ├── BITUser.m ├── BITWebTableViewCell.h ├── BITWebTableViewCell.m ├── HockeySDK.h ├── HockeySDKEnums.h ├── HockeySDKFeatureConfig.h ├── HockeySDKNullability.h ├── HockeySDKPrivate.h └── HockeySDKPrivate.m ├── Documentation ├── Guides │ ├── App Versioning.md │ ├── Changelog.md │ ├── Crash Reporting Not Working.md │ ├── Installation & Setup.md │ ├── Migration Kits.md │ ├── Set Custom AlertViewHandler.md │ └── Upload Symbols.md ├── HockeySDK │ └── .jazzy.yaml └── Themes │ └── apple │ ├── assets │ ├── css │ │ ├── highlight.css.scss │ │ └── jazzy.css.scss │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ └── gh.png │ └── js │ │ ├── jazzy.js │ │ └── jquery.min.js │ └── templates │ ├── doc.mustache │ ├── footer.mustache │ ├── header.mustache │ ├── nav.mustache │ ├── parameter.mustache │ ├── task.mustache │ └── tasks.mustache ├── HockeySDK-Source.podspec ├── HockeySDK.podspec ├── LICENSE ├── README.md ├── Resources ├── AppIconPlaceHolder.png ├── Arrow.png ├── Arrow@2x.png ├── Arrow@3x.png ├── Blur.png ├── Blur@2x.png ├── Blur@3x.png ├── Cancel.png ├── Cancel@2x.png ├── Cancel@3x.png ├── FeedbackPlaceholder.png ├── HockeySDK-Info.plist ├── IconGradient.png ├── IconGradient@2x.png ├── Ok.png ├── Ok@2x.png ├── Ok@3x.png ├── Rectangle.png ├── Rectangle@2x.png ├── Rectangle@3x.png ├── authorize_denied.png ├── authorize_denied@2x.png ├── authorize_denied@3x.png ├── bg.png ├── buttonRoundedDelete.png ├── buttonRoundedDelete@2x.png ├── buttonRoundedDeleteHighlighted.png ├── buttonRoundedDeleteHighlighted@2x.png ├── buttonRoundedRegular.png ├── buttonRoundedRegular@2x.png ├── buttonRoundedRegularHighlighted.png ├── buttonRoundedRegularHighlighted@2x.png ├── de.lproj │ └── HockeySDK.strings ├── en.lproj │ └── HockeySDK.strings ├── es.lproj │ └── HockeySDK.strings ├── fa.lproj │ └── HockeySDK.strings ├── feedbackActivity.png ├── feedbackActivity@2x.png ├── feedbackActivity@2x~ipad.png ├── feedbackActivity@3x.png ├── feedbackActivity~ipad.png ├── fr.lproj │ └── HockeySDK.strings ├── hr.lproj │ └── HockeySDK.strings ├── hu.lproj │ └── HockeySDK.strings ├── iconCamera.png ├── iconCamera@2x.png ├── it.lproj │ └── HockeySDK.strings ├── ja.lproj │ ├── HockeySDK.strings │ └── Symbol-Blue_on_White.png ├── nb.lproj │ └── HockeySDK.strings ├── nl.lproj │ └── HockeySDK.strings ├── pt-PT.lproj │ └── HockeySDK.strings ├── pt.lproj │ └── HockeySDK.strings ├── ru.lproj │ └── HockeySDK.strings ├── tr.lproj │ └── HockeySDK.strings └── zh-Hans.lproj │ └── HockeySDK.strings ├── Support ├── HockeySDK Framework │ └── Info.plist ├── HockeySDK FrameworkTests │ └── Info.plist ├── HockeySDK TestTarget │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── HockeySDK.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── HockeySDK.xccheckout │ └── xcshareddata │ │ ├── xcbaselines │ │ └── 1E5A458F16F0DFC200B55C04.xcbaseline │ │ │ ├── E1AF7159-3C8D-4A2A-8625-B72024F5DD3E.plist │ │ │ └── Info.plist │ │ └── xcschemes │ │ ├── HockeySDK Distribution.xcscheme │ │ ├── HockeySDK Documentation.xcscheme │ │ ├── HockeySDK Framework.xcscheme │ │ ├── HockeySDK.xcscheme │ │ └── HockeySDKResources.xcscheme ├── HockeySDKBase.xcconfig ├── HockeySDKCrashOnlyConfig.h ├── HockeySDKCrashOnlyExtensionConfig.h ├── HockeySDKDistribution.sh ├── HockeySDKFeatureConfigDefault.h ├── HockeySDKFeedbackOnlyConfig.h ├── HockeySDKTest.xcconfig ├── HockeySDKTests │ ├── BITApplicationTests.m │ ├── BITAuthenticatorTests.m │ ├── BITBaseTests.m │ ├── BITChannelTests.m │ ├── BITCrashManagerTests.m │ ├── BITCrashReportTextFormatterTests.m │ ├── BITDataTests.m │ ├── BITDeviceTests.m │ ├── BITDomainTests.m │ ├── BITFeedbackManagerTests.m │ ├── BITHockeyAppClientTests.m │ ├── BITHockeyHelperTests.m │ ├── BITHockeyLoggerTests.m │ ├── BITInternalTests.m │ ├── BITKeychainUtilsTests.m │ ├── BITMetricsManagerTests.m │ ├── BITPersistenceTests.m │ ├── BITSenderTests.m │ ├── BITSessionTests.m │ ├── BITStoreUpdateManagerTests.m │ ├── BITTelemetryContextTests.m │ ├── BITTestHelper.h │ ├── BITTestHelper.m │ ├── BITTestsDependencyInjection.h │ ├── BITTestsDependencyInjection.m │ ├── BITUpdateManagerTests.m │ ├── BITUserTests.m │ ├── Fixtures │ │ ├── AppIcon.exotic.png │ │ ├── AppIcon.exotic@2x.png │ │ ├── AppIcon.png │ │ ├── AppIcon@2x.png │ │ ├── Icon.png │ │ ├── StoreBundleIdentifierKnown.json │ │ ├── StoreBundleIdentifierUnknown.json │ │ ├── live_report_empty.plcrash │ │ ├── live_report_exception.plcrash │ │ ├── live_report_exception_marketing.plcrash │ │ ├── live_report_signal.plcrash │ │ ├── live_report_signal_marketing.plcrash │ │ ├── live_report_xamarin.plcrash │ │ └── log_report_xamarin │ ├── HockeySDKTests-Info.plist │ ├── Vendor │ │ ├── Licenses.txt │ │ ├── OCHamcrestIOS.framework │ │ │ ├── Headers │ │ │ ├── OCHamcrestIOS │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── HCAllOf.h │ │ │ │ │ ├── HCAnyOf.h │ │ │ │ │ ├── HCArgumentCaptor.h │ │ │ │ │ ├── HCAssertThat.h │ │ │ │ │ ├── HCBaseDescription.h │ │ │ │ │ ├── HCBaseMatcher.h │ │ │ │ │ ├── HCClassMatcher.h │ │ │ │ │ ├── HCCollect.h │ │ │ │ │ ├── HCConformsToProtocol.h │ │ │ │ │ ├── HCDescribedAs.h │ │ │ │ │ ├── HCDescription.h │ │ │ │ │ ├── HCDiagnosingMatcher.h │ │ │ │ │ ├── HCEvery.h │ │ │ │ │ ├── HCHasCount.h │ │ │ │ │ ├── HCHasDescription.h │ │ │ │ │ ├── HCHasProperty.h │ │ │ │ │ ├── HCInvocationMatcher.h │ │ │ │ │ ├── HCIs.h │ │ │ │ │ ├── HCIsAnything.h │ │ │ │ │ ├── HCIsCloseTo.h │ │ │ │ │ ├── HCIsCollectionContaining.h │ │ │ │ │ ├── HCIsCollectionContainingInAnyOrder.h │ │ │ │ │ ├── HCIsCollectionContainingInOrder.h │ │ │ │ │ ├── HCIsCollectionContainingInRelativeOrder.h │ │ │ │ │ ├── HCIsCollectionOnlyContaining.h │ │ │ │ │ ├── HCIsDictionaryContaining.h │ │ │ │ │ ├── HCIsDictionaryContainingEntries.h │ │ │ │ │ ├── HCIsDictionaryContainingKey.h │ │ │ │ │ ├── HCIsDictionaryContainingValue.h │ │ │ │ │ ├── HCIsEmptyCollection.h │ │ │ │ │ ├── HCIsEqual.h │ │ │ │ │ ├── HCIsEqualCompressingWhiteSpace.h │ │ │ │ │ ├── HCIsEqualIgnoringCase.h │ │ │ │ │ ├── HCIsEqualToNumber.h │ │ │ │ │ ├── HCIsIn.h │ │ │ │ │ ├── HCIsInstanceOf.h │ │ │ │ │ ├── HCIsNil.h │ │ │ │ │ ├── HCIsNot.h │ │ │ │ │ ├── HCIsSame.h │ │ │ │ │ ├── HCIsTrueFalse.h │ │ │ │ │ ├── HCIsTypeOf.h │ │ │ │ │ ├── HCMatcher.h │ │ │ │ │ ├── HCNumberAssert.h │ │ │ │ │ ├── HCOrderingComparison.h │ │ │ │ │ ├── HCRequireNonNilObject.h │ │ │ │ │ ├── HCSelfDescribing.h │ │ │ │ │ ├── HCStringContains.h │ │ │ │ │ ├── HCStringContainsInOrder.h │ │ │ │ │ ├── HCStringDescription.h │ │ │ │ │ ├── HCStringEndsWith.h │ │ │ │ │ ├── HCStringStartsWith.h │ │ │ │ │ ├── HCSubstringMatcher.h │ │ │ │ │ ├── HCTestFailure.h │ │ │ │ │ ├── HCTestFailureReporter.h │ │ │ │ │ ├── HCTestFailureReporterChain.h │ │ │ │ │ ├── HCThrowsException.h │ │ │ │ │ ├── HCWrapInMatcher.h │ │ │ │ │ └── OCHamcrestIOS.h │ │ │ │ ├── OCHamcrestIOS │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ ├── OCMock.framework │ │ │ ├── Headers │ │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ │ ├── OCMArg.h │ │ │ │ ├── OCMConstraint.h │ │ │ │ ├── OCMFunctions.h │ │ │ │ ├── OCMLocation.h │ │ │ │ ├── OCMMacroState.h │ │ │ │ ├── OCMRecorder.h │ │ │ │ ├── OCMStubRecorder.h │ │ │ │ ├── OCMock.h │ │ │ │ └── OCMockObject.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── OCMock │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── OCMockitoIOS.framework │ │ │ ├── Headers │ │ │ ├── OCMockitoIOS │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── MKTBaseMockObject.h │ │ │ │ ├── MKTClassObjectMock.h │ │ │ │ ├── MKTNonObjectArgumentMatching.h │ │ │ │ ├── MKTObjectAndProtocolMock.h │ │ │ │ ├── MKTObjectMock.h │ │ │ │ ├── MKTOngoingStubbing.h │ │ │ │ ├── MKTProtocolMock.h │ │ │ │ ├── NSInvocation+OCMockito.h │ │ │ │ └── OCMockitoIOS.h │ │ │ ├── OCMockitoIOS │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ └── en.lproj │ │ └── InfoPlist.strings ├── allfeatures.xcconfig ├── crashonly.xcconfig ├── crashonlyextensions.xcconfig ├── default.xcconfig ├── feedbackonly.xcconfig ├── module_allfeatures.modulemap ├── module_crashonly.modulemap ├── module_default.modulemap └── module_feedbackonly.modulemap └── Vendor └── CrashReporter.framework ├── CrashReporter ├── Headers ├── Resources └── Versions ├── A ├── CrashReporter ├── Headers │ ├── CrashReporter.h │ ├── PLCrashAsyncSignalInfo.h │ ├── PLCrashFeatureConfig.h │ ├── PLCrashMacros.h │ ├── PLCrashNamespace.h │ ├── PLCrashReport.h │ ├── PLCrashReportApplicationInfo.h │ ├── PLCrashReportBinaryImageInfo.h │ ├── PLCrashReportExceptionInfo.h │ ├── PLCrashReportFormatter.h │ ├── PLCrashReportMachExceptionInfo.h │ ├── PLCrashReportMachineInfo.h │ ├── PLCrashReportProcessInfo.h │ ├── PLCrashReportProcessorInfo.h │ ├── PLCrashReportRegisterInfo.h │ ├── PLCrashReportSignalInfo.h │ ├── PLCrashReportStackFrameInfo.h │ ├── PLCrashReportSymbolInfo.h │ ├── PLCrashReportSystemInfo.h │ ├── PLCrashReportTextFormatter.h │ ├── PLCrashReportThreadInfo.h │ ├── PLCrashReporter.h │ └── PLCrashReporterConfig.h └── Resources │ └── Info.plist └── Current /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/BITActivityIndicatorButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITActivityIndicatorButton.h -------------------------------------------------------------------------------- /Classes/BITActivityIndicatorButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITActivityIndicatorButton.m -------------------------------------------------------------------------------- /Classes/BITAppStoreHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAppStoreHeader.h -------------------------------------------------------------------------------- /Classes/BITAppStoreHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAppStoreHeader.m -------------------------------------------------------------------------------- /Classes/BITAppVersionMetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAppVersionMetaInfo.h -------------------------------------------------------------------------------- /Classes/BITAppVersionMetaInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAppVersionMetaInfo.m -------------------------------------------------------------------------------- /Classes/BITApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITApplication.h -------------------------------------------------------------------------------- /Classes/BITApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITApplication.m -------------------------------------------------------------------------------- /Classes/BITArrowImageAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITArrowImageAnnotation.h -------------------------------------------------------------------------------- /Classes/BITArrowImageAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITArrowImageAnnotation.m -------------------------------------------------------------------------------- /Classes/BITAttributedLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAttributedLabel.h -------------------------------------------------------------------------------- /Classes/BITAttributedLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAttributedLabel.m -------------------------------------------------------------------------------- /Classes/BITAuthenticationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAuthenticationViewController.h -------------------------------------------------------------------------------- /Classes/BITAuthenticationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAuthenticationViewController.m -------------------------------------------------------------------------------- /Classes/BITAuthenticator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAuthenticator.h -------------------------------------------------------------------------------- /Classes/BITAuthenticator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAuthenticator.m -------------------------------------------------------------------------------- /Classes/BITAuthenticator_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITAuthenticator_Private.h -------------------------------------------------------------------------------- /Classes/BITBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITBase.h -------------------------------------------------------------------------------- /Classes/BITBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITBase.m -------------------------------------------------------------------------------- /Classes/BITBlurImageAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITBlurImageAnnotation.h -------------------------------------------------------------------------------- /Classes/BITBlurImageAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITBlurImageAnnotation.m -------------------------------------------------------------------------------- /Classes/BITCategoryContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCategoryContainer.h -------------------------------------------------------------------------------- /Classes/BITCategoryContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCategoryContainer.m -------------------------------------------------------------------------------- /Classes/BITChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITChannel.h -------------------------------------------------------------------------------- /Classes/BITChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITChannel.m -------------------------------------------------------------------------------- /Classes/BITChannelPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITChannelPrivate.h -------------------------------------------------------------------------------- /Classes/BITCrashAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashAttachment.h -------------------------------------------------------------------------------- /Classes/BITCrashAttachment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashAttachment.m -------------------------------------------------------------------------------- /Classes/BITCrashCXXExceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashCXXExceptionHandler.h -------------------------------------------------------------------------------- /Classes/BITCrashCXXExceptionHandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashCXXExceptionHandler.mm -------------------------------------------------------------------------------- /Classes/BITCrashDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashDetails.h -------------------------------------------------------------------------------- /Classes/BITCrashDetails.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashDetails.m -------------------------------------------------------------------------------- /Classes/BITCrashDetailsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashDetailsPrivate.h -------------------------------------------------------------------------------- /Classes/BITCrashManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashManager.h -------------------------------------------------------------------------------- /Classes/BITCrashManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashManager.m -------------------------------------------------------------------------------- /Classes/BITCrashManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashManagerDelegate.h -------------------------------------------------------------------------------- /Classes/BITCrashManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashManagerPrivate.h -------------------------------------------------------------------------------- /Classes/BITCrashMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashMetaData.h -------------------------------------------------------------------------------- /Classes/BITCrashMetaData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashMetaData.m -------------------------------------------------------------------------------- /Classes/BITCrashReportTextFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashReportTextFormatter.h -------------------------------------------------------------------------------- /Classes/BITCrashReportTextFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashReportTextFormatter.m -------------------------------------------------------------------------------- /Classes/BITCrashReportTextFormatterPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITCrashReportTextFormatterPrivate.h -------------------------------------------------------------------------------- /Classes/BITData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITData.h -------------------------------------------------------------------------------- /Classes/BITData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITData.m -------------------------------------------------------------------------------- /Classes/BITDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITDevice.h -------------------------------------------------------------------------------- /Classes/BITDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITDevice.m -------------------------------------------------------------------------------- /Classes/BITDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITDomain.h -------------------------------------------------------------------------------- /Classes/BITDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITDomain.m -------------------------------------------------------------------------------- /Classes/BITEnvelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITEnvelope.h -------------------------------------------------------------------------------- /Classes/BITEnvelope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITEnvelope.m -------------------------------------------------------------------------------- /Classes/BITEventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITEventData.h -------------------------------------------------------------------------------- /Classes/BITEventData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITEventData.m -------------------------------------------------------------------------------- /Classes/BITFeedbackActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackActivity.h -------------------------------------------------------------------------------- /Classes/BITFeedbackActivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackActivity.m -------------------------------------------------------------------------------- /Classes/BITFeedbackComposeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackComposeViewController.h -------------------------------------------------------------------------------- /Classes/BITFeedbackComposeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackComposeViewController.m -------------------------------------------------------------------------------- /Classes/BITFeedbackComposeViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackComposeViewControllerDelegate.h -------------------------------------------------------------------------------- /Classes/BITFeedbackListViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackListViewCell.h -------------------------------------------------------------------------------- /Classes/BITFeedbackListViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackListViewCell.m -------------------------------------------------------------------------------- /Classes/BITFeedbackListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackListViewController.h -------------------------------------------------------------------------------- /Classes/BITFeedbackListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackListViewController.m -------------------------------------------------------------------------------- /Classes/BITFeedbackManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackManager.h -------------------------------------------------------------------------------- /Classes/BITFeedbackManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackManager.m -------------------------------------------------------------------------------- /Classes/BITFeedbackManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackManagerDelegate.h -------------------------------------------------------------------------------- /Classes/BITFeedbackManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackManagerPrivate.h -------------------------------------------------------------------------------- /Classes/BITFeedbackMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackMessage.h -------------------------------------------------------------------------------- /Classes/BITFeedbackMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackMessage.m -------------------------------------------------------------------------------- /Classes/BITFeedbackMessageAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackMessageAttachment.h -------------------------------------------------------------------------------- /Classes/BITFeedbackMessageAttachment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackMessageAttachment.m -------------------------------------------------------------------------------- /Classes/BITFeedbackUserDataViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackUserDataViewController.h -------------------------------------------------------------------------------- /Classes/BITFeedbackUserDataViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITFeedbackUserDataViewController.m -------------------------------------------------------------------------------- /Classes/BITGZIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITGZIP.h -------------------------------------------------------------------------------- /Classes/BITHockeyAppClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyAppClient.h -------------------------------------------------------------------------------- /Classes/BITHockeyAppClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyAppClient.m -------------------------------------------------------------------------------- /Classes/BITHockeyAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyAttachment.h -------------------------------------------------------------------------------- /Classes/BITHockeyAttachment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyAttachment.m -------------------------------------------------------------------------------- /Classes/BITHockeyBaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyBaseManager.h -------------------------------------------------------------------------------- /Classes/BITHockeyBaseManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyBaseManager.m -------------------------------------------------------------------------------- /Classes/BITHockeyBaseManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyBaseManagerPrivate.h -------------------------------------------------------------------------------- /Classes/BITHockeyBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyBaseViewController.h -------------------------------------------------------------------------------- /Classes/BITHockeyBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyBaseViewController.m -------------------------------------------------------------------------------- /Classes/BITHockeyHelper+Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyHelper+Application.h -------------------------------------------------------------------------------- /Classes/BITHockeyHelper+Application.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyHelper+Application.m -------------------------------------------------------------------------------- /Classes/BITHockeyHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyHelper.h -------------------------------------------------------------------------------- /Classes/BITHockeyHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyHelper.m -------------------------------------------------------------------------------- /Classes/BITHockeyLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyLogger.h -------------------------------------------------------------------------------- /Classes/BITHockeyLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyLogger.m -------------------------------------------------------------------------------- /Classes/BITHockeyLoggerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyLoggerPrivate.h -------------------------------------------------------------------------------- /Classes/BITHockeyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyManager.h -------------------------------------------------------------------------------- /Classes/BITHockeyManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyManager.m -------------------------------------------------------------------------------- /Classes/BITHockeyManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITHockeyManagerDelegate.h -------------------------------------------------------------------------------- /Classes/BITImageAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITImageAnnotation.h -------------------------------------------------------------------------------- /Classes/BITImageAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITImageAnnotation.m -------------------------------------------------------------------------------- /Classes/BITImageAnnotationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITImageAnnotationViewController.h -------------------------------------------------------------------------------- /Classes/BITImageAnnotationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITImageAnnotationViewController.m -------------------------------------------------------------------------------- /Classes/BITInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITInternal.h -------------------------------------------------------------------------------- /Classes/BITInternal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITInternal.m -------------------------------------------------------------------------------- /Classes/BITKeychainUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITKeychainUtils.h -------------------------------------------------------------------------------- /Classes/BITKeychainUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITKeychainUtils.m -------------------------------------------------------------------------------- /Classes/BITMetricsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITMetricsManager.h -------------------------------------------------------------------------------- /Classes/BITMetricsManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITMetricsManager.m -------------------------------------------------------------------------------- /Classes/BITMetricsManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITMetricsManagerPrivate.h -------------------------------------------------------------------------------- /Classes/BITPersistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITPersistence.h -------------------------------------------------------------------------------- /Classes/BITPersistence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITPersistence.m -------------------------------------------------------------------------------- /Classes/BITPersistencePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITPersistencePrivate.h -------------------------------------------------------------------------------- /Classes/BITRectangleImageAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITRectangleImageAnnotation.h -------------------------------------------------------------------------------- /Classes/BITRectangleImageAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITRectangleImageAnnotation.m -------------------------------------------------------------------------------- /Classes/BITSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITSender.h -------------------------------------------------------------------------------- /Classes/BITSender.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITSender.m -------------------------------------------------------------------------------- /Classes/BITSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITSession.h -------------------------------------------------------------------------------- /Classes/BITSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITSession.m -------------------------------------------------------------------------------- /Classes/BITSessionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITSessionState.h -------------------------------------------------------------------------------- /Classes/BITSessionStateData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITSessionStateData.h -------------------------------------------------------------------------------- /Classes/BITSessionStateData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITSessionStateData.m -------------------------------------------------------------------------------- /Classes/BITStoreButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITStoreButton.h -------------------------------------------------------------------------------- /Classes/BITStoreButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITStoreButton.m -------------------------------------------------------------------------------- /Classes/BITStoreUpdateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITStoreUpdateManager.h -------------------------------------------------------------------------------- /Classes/BITStoreUpdateManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITStoreUpdateManager.m -------------------------------------------------------------------------------- /Classes/BITStoreUpdateManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITStoreUpdateManagerDelegate.h -------------------------------------------------------------------------------- /Classes/BITStoreUpdateManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITStoreUpdateManagerPrivate.h -------------------------------------------------------------------------------- /Classes/BITTelemetryContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITTelemetryContext.h -------------------------------------------------------------------------------- /Classes/BITTelemetryContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITTelemetryContext.m -------------------------------------------------------------------------------- /Classes/BITTelemetryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITTelemetryData.h -------------------------------------------------------------------------------- /Classes/BITTelemetryData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITTelemetryData.m -------------------------------------------------------------------------------- /Classes/BITTelemetryObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITTelemetryObject.h -------------------------------------------------------------------------------- /Classes/BITTelemetryObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITTelemetryObject.m -------------------------------------------------------------------------------- /Classes/BITUpdateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITUpdateManager.h -------------------------------------------------------------------------------- /Classes/BITUpdateManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITUpdateManager.m -------------------------------------------------------------------------------- /Classes/BITUpdateManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITUpdateManagerDelegate.h -------------------------------------------------------------------------------- /Classes/BITUpdateManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITUpdateManagerPrivate.h -------------------------------------------------------------------------------- /Classes/BITUpdateViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITUpdateViewController.h -------------------------------------------------------------------------------- /Classes/BITUpdateViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITUpdateViewController.m -------------------------------------------------------------------------------- /Classes/BITUpdateViewControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITUpdateViewControllerPrivate.h -------------------------------------------------------------------------------- /Classes/BITUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITUser.h -------------------------------------------------------------------------------- /Classes/BITUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITUser.m -------------------------------------------------------------------------------- /Classes/BITWebTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITWebTableViewCell.h -------------------------------------------------------------------------------- /Classes/BITWebTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/BITWebTableViewCell.m -------------------------------------------------------------------------------- /Classes/HockeySDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/HockeySDK.h -------------------------------------------------------------------------------- /Classes/HockeySDKEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/HockeySDKEnums.h -------------------------------------------------------------------------------- /Classes/HockeySDKFeatureConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/HockeySDKFeatureConfig.h -------------------------------------------------------------------------------- /Classes/HockeySDKNullability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/HockeySDKNullability.h -------------------------------------------------------------------------------- /Classes/HockeySDKPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/HockeySDKPrivate.h -------------------------------------------------------------------------------- /Classes/HockeySDKPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Classes/HockeySDKPrivate.m -------------------------------------------------------------------------------- /Documentation/Guides/App Versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Guides/App Versioning.md -------------------------------------------------------------------------------- /Documentation/Guides/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Guides/Changelog.md -------------------------------------------------------------------------------- /Documentation/Guides/Crash Reporting Not Working.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Guides/Crash Reporting Not Working.md -------------------------------------------------------------------------------- /Documentation/Guides/Installation & Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Guides/Installation & Setup.md -------------------------------------------------------------------------------- /Documentation/Guides/Migration Kits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Guides/Migration Kits.md -------------------------------------------------------------------------------- /Documentation/Guides/Set Custom AlertViewHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Guides/Set Custom AlertViewHandler.md -------------------------------------------------------------------------------- /Documentation/Guides/Upload Symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Guides/Upload Symbols.md -------------------------------------------------------------------------------- /Documentation/HockeySDK/.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/HockeySDK/.jazzy.yaml -------------------------------------------------------------------------------- /Documentation/Themes/apple/assets/css/highlight.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/assets/css/highlight.css.scss -------------------------------------------------------------------------------- /Documentation/Themes/apple/assets/css/jazzy.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/assets/css/jazzy.css.scss -------------------------------------------------------------------------------- /Documentation/Themes/apple/assets/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/assets/img/carat.png -------------------------------------------------------------------------------- /Documentation/Themes/apple/assets/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/assets/img/dash.png -------------------------------------------------------------------------------- /Documentation/Themes/apple/assets/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/assets/img/gh.png -------------------------------------------------------------------------------- /Documentation/Themes/apple/assets/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/assets/js/jazzy.js -------------------------------------------------------------------------------- /Documentation/Themes/apple/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/assets/js/jquery.min.js -------------------------------------------------------------------------------- /Documentation/Themes/apple/templates/doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/templates/doc.mustache -------------------------------------------------------------------------------- /Documentation/Themes/apple/templates/footer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/templates/footer.mustache -------------------------------------------------------------------------------- /Documentation/Themes/apple/templates/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/templates/header.mustache -------------------------------------------------------------------------------- /Documentation/Themes/apple/templates/nav.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/templates/nav.mustache -------------------------------------------------------------------------------- /Documentation/Themes/apple/templates/parameter.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/templates/parameter.mustache -------------------------------------------------------------------------------- /Documentation/Themes/apple/templates/task.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/templates/task.mustache -------------------------------------------------------------------------------- /Documentation/Themes/apple/templates/tasks.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Documentation/Themes/apple/templates/tasks.mustache -------------------------------------------------------------------------------- /HockeySDK-Source.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/HockeySDK-Source.podspec -------------------------------------------------------------------------------- /HockeySDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/HockeySDK.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Resources/AppIconPlaceHolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/AppIconPlaceHolder.png -------------------------------------------------------------------------------- /Resources/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Arrow.png -------------------------------------------------------------------------------- /Resources/Arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Arrow@2x.png -------------------------------------------------------------------------------- /Resources/Arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Arrow@3x.png -------------------------------------------------------------------------------- /Resources/Blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Blur.png -------------------------------------------------------------------------------- /Resources/Blur@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Blur@2x.png -------------------------------------------------------------------------------- /Resources/Blur@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Blur@3x.png -------------------------------------------------------------------------------- /Resources/Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Cancel.png -------------------------------------------------------------------------------- /Resources/Cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Cancel@2x.png -------------------------------------------------------------------------------- /Resources/Cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Cancel@3x.png -------------------------------------------------------------------------------- /Resources/FeedbackPlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/FeedbackPlaceholder.png -------------------------------------------------------------------------------- /Resources/HockeySDK-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/HockeySDK-Info.plist -------------------------------------------------------------------------------- /Resources/IconGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/IconGradient.png -------------------------------------------------------------------------------- /Resources/IconGradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/IconGradient@2x.png -------------------------------------------------------------------------------- /Resources/Ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Ok.png -------------------------------------------------------------------------------- /Resources/Ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Ok@2x.png -------------------------------------------------------------------------------- /Resources/Ok@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Ok@3x.png -------------------------------------------------------------------------------- /Resources/Rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Rectangle.png -------------------------------------------------------------------------------- /Resources/Rectangle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Rectangle@2x.png -------------------------------------------------------------------------------- /Resources/Rectangle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/Rectangle@3x.png -------------------------------------------------------------------------------- /Resources/authorize_denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/authorize_denied.png -------------------------------------------------------------------------------- /Resources/authorize_denied@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/authorize_denied@2x.png -------------------------------------------------------------------------------- /Resources/authorize_denied@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/authorize_denied@3x.png -------------------------------------------------------------------------------- /Resources/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/bg.png -------------------------------------------------------------------------------- /Resources/buttonRoundedDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/buttonRoundedDelete.png -------------------------------------------------------------------------------- /Resources/buttonRoundedDelete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/buttonRoundedDelete@2x.png -------------------------------------------------------------------------------- /Resources/buttonRoundedDeleteHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/buttonRoundedDeleteHighlighted.png -------------------------------------------------------------------------------- /Resources/buttonRoundedDeleteHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/buttonRoundedDeleteHighlighted@2x.png -------------------------------------------------------------------------------- /Resources/buttonRoundedRegular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/buttonRoundedRegular.png -------------------------------------------------------------------------------- /Resources/buttonRoundedRegular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/buttonRoundedRegular@2x.png -------------------------------------------------------------------------------- /Resources/buttonRoundedRegularHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/buttonRoundedRegularHighlighted.png -------------------------------------------------------------------------------- /Resources/buttonRoundedRegularHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/buttonRoundedRegularHighlighted@2x.png -------------------------------------------------------------------------------- /Resources/de.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/de.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/en.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/en.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/es.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/es.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/fa.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/fa.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/feedbackActivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/feedbackActivity.png -------------------------------------------------------------------------------- /Resources/feedbackActivity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/feedbackActivity@2x.png -------------------------------------------------------------------------------- /Resources/feedbackActivity@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/feedbackActivity@2x~ipad.png -------------------------------------------------------------------------------- /Resources/feedbackActivity@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/feedbackActivity@3x.png -------------------------------------------------------------------------------- /Resources/feedbackActivity~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/feedbackActivity~ipad.png -------------------------------------------------------------------------------- /Resources/fr.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/fr.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/hr.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/hr.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/hu.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/hu.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/iconCamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/iconCamera.png -------------------------------------------------------------------------------- /Resources/iconCamera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/iconCamera@2x.png -------------------------------------------------------------------------------- /Resources/it.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/it.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/ja.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/Symbol-Blue_on_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/ja.lproj/Symbol-Blue_on_White.png -------------------------------------------------------------------------------- /Resources/nb.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/nb.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/nl.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/nl.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/pt-PT.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/pt-PT.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/pt.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/pt.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/ru.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/ru.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/tr.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/tr.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Resources/zh-Hans.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Resources/zh-Hans.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Support/HockeySDK Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK Framework/Info.plist -------------------------------------------------------------------------------- /Support/HockeySDK FrameworkTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK FrameworkTests/Info.plist -------------------------------------------------------------------------------- /Support/HockeySDK TestTarget/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK TestTarget/AppDelegate.h -------------------------------------------------------------------------------- /Support/HockeySDK TestTarget/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK TestTarget/AppDelegate.m -------------------------------------------------------------------------------- /Support/HockeySDK TestTarget/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK TestTarget/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Support/HockeySDK TestTarget/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK TestTarget/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Support/HockeySDK TestTarget/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK TestTarget/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Support/HockeySDK TestTarget/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK TestTarget/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Support/HockeySDK TestTarget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK TestTarget/Info.plist -------------------------------------------------------------------------------- /Support/HockeySDK TestTarget/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK TestTarget/ViewController.h -------------------------------------------------------------------------------- /Support/HockeySDK TestTarget/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK TestTarget/ViewController.m -------------------------------------------------------------------------------- /Support/HockeySDK TestTarget/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK TestTarget/main.m -------------------------------------------------------------------------------- /Support/HockeySDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Support/HockeySDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Support/HockeySDK.xcodeproj/project.xcworkspace/xcshareddata/HockeySDK.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK.xcodeproj/project.xcworkspace/xcshareddata/HockeySDK.xccheckout -------------------------------------------------------------------------------- /Support/HockeySDK.xcodeproj/xcshareddata/xcbaselines/1E5A458F16F0DFC200B55C04.xcbaseline/E1AF7159-3C8D-4A2A-8625-B72024F5DD3E.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK.xcodeproj/xcshareddata/xcbaselines/1E5A458F16F0DFC200B55C04.xcbaseline/E1AF7159-3C8D-4A2A-8625-B72024F5DD3E.plist -------------------------------------------------------------------------------- /Support/HockeySDK.xcodeproj/xcshareddata/xcbaselines/1E5A458F16F0DFC200B55C04.xcbaseline/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK.xcodeproj/xcshareddata/xcbaselines/1E5A458F16F0DFC200B55C04.xcbaseline/Info.plist -------------------------------------------------------------------------------- /Support/HockeySDK.xcodeproj/xcshareddata/xcschemes/HockeySDK Distribution.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK.xcodeproj/xcshareddata/xcschemes/HockeySDK Distribution.xcscheme -------------------------------------------------------------------------------- /Support/HockeySDK.xcodeproj/xcshareddata/xcschemes/HockeySDK Documentation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK.xcodeproj/xcshareddata/xcschemes/HockeySDK Documentation.xcscheme -------------------------------------------------------------------------------- /Support/HockeySDK.xcodeproj/xcshareddata/xcschemes/HockeySDK Framework.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK.xcodeproj/xcshareddata/xcschemes/HockeySDK Framework.xcscheme -------------------------------------------------------------------------------- /Support/HockeySDK.xcodeproj/xcshareddata/xcschemes/HockeySDK.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK.xcodeproj/xcshareddata/xcschemes/HockeySDK.xcscheme -------------------------------------------------------------------------------- /Support/HockeySDK.xcodeproj/xcshareddata/xcschemes/HockeySDKResources.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDK.xcodeproj/xcshareddata/xcschemes/HockeySDKResources.xcscheme -------------------------------------------------------------------------------- /Support/HockeySDKBase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKBase.xcconfig -------------------------------------------------------------------------------- /Support/HockeySDKCrashOnlyConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKCrashOnlyConfig.h -------------------------------------------------------------------------------- /Support/HockeySDKCrashOnlyExtensionConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKCrashOnlyExtensionConfig.h -------------------------------------------------------------------------------- /Support/HockeySDKDistribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKDistribution.sh -------------------------------------------------------------------------------- /Support/HockeySDKFeatureConfigDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKFeatureConfigDefault.h -------------------------------------------------------------------------------- /Support/HockeySDKFeedbackOnlyConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKFeedbackOnlyConfig.h -------------------------------------------------------------------------------- /Support/HockeySDKTest.xcconfig: -------------------------------------------------------------------------------- 1 | #include "HockeySDKBase.xcconfig" 2 | 3 | WARNING_CFLAGS = -Wno-partial-availability 4 | -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITApplicationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITApplicationTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITAuthenticatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITAuthenticatorTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITBaseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITBaseTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITChannelTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITChannelTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITCrashManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITCrashManagerTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITCrashReportTextFormatterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITCrashReportTextFormatterTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITDataTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITDataTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITDeviceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITDeviceTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITDomainTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITDomainTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITFeedbackManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITFeedbackManagerTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITHockeyAppClientTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITHockeyAppClientTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITHockeyHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITHockeyHelperTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITHockeyLoggerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITHockeyLoggerTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITInternalTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITInternalTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITKeychainUtilsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITKeychainUtilsTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITMetricsManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITMetricsManagerTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITPersistenceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITPersistenceTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITSenderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITSenderTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITSessionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITSessionTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITStoreUpdateManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITStoreUpdateManagerTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITTelemetryContextTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITTelemetryContextTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITTestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITTestHelper.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITTestHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITTestHelper.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITTestsDependencyInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITTestsDependencyInjection.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITTestsDependencyInjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITTestsDependencyInjection.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITUpdateManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITUpdateManagerTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/BITUserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/BITUserTests.m -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/AppIcon.exotic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/AppIcon.exotic.png -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/AppIcon.exotic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/AppIcon.exotic@2x.png -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/AppIcon.png -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/AppIcon@2x.png -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/Icon.png -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/StoreBundleIdentifierKnown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/StoreBundleIdentifierKnown.json -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/StoreBundleIdentifierUnknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/StoreBundleIdentifierUnknown.json -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/live_report_empty.plcrash: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/live_report_exception.plcrash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/live_report_exception.plcrash -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/live_report_exception_marketing.plcrash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/live_report_exception_marketing.plcrash -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/live_report_signal.plcrash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/live_report_signal.plcrash -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/live_report_signal_marketing.plcrash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/live_report_signal_marketing.plcrash -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/live_report_xamarin.plcrash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/live_report_xamarin.plcrash -------------------------------------------------------------------------------- /Support/HockeySDKTests/Fixtures/log_report_xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Fixtures/log_report_xamarin -------------------------------------------------------------------------------- /Support/HockeySDKTests/HockeySDKTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/HockeySDKTests-Info.plist -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/Licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/Licenses.txt -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/OCHamcrestIOS: -------------------------------------------------------------------------------- 1 | Versions/Current/OCHamcrestIOS -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAllOf.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAnyOf.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCArgumentCaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCArgumentCaptor.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAssertThat.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseDescription.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseMatcher.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCClassMatcher.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCCollect.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCConformsToProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDescribedAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDescribedAs.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDescription.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCEvery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCEvery.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasCount.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasDescription.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasProperty.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIs.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsAnything.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCloseTo.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInRelativeOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInRelativeOrder.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqual.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualCompressingWhiteSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualCompressingWhiteSpace.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsIn.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNil.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNot.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsSame.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTrueFalse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTypeOf.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCMatcher.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCNumberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCNumberAssert.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCOrderingComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCOrderingComparison.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCSelfDescribing.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContains.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringDescription.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringEndsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringEndsWith.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringStartsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringStartsWith.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCSubstringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailure.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureReporter.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureReporterChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureReporterChain.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCThrowsException.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCWrapInMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/OCHamcrestIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/OCHamcrestIOS.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/OCHamcrestIOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/OCHamcrestIOS -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCHamcrestIOS.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Headers/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Headers/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMArg.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMConstraint.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMFunctions.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMLocation.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMMacroState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMMacroState.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMRecorder.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMStubRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMStubRecorder.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMock.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Headers/OCMockObject.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Info.plist -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/OCMock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/OCMock -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMock.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMock.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/OCMockitoIOS: -------------------------------------------------------------------------------- 1 | Versions/Current/OCMockitoIOS -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTBaseMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTBaseMockObject.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTClassObjectMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTClassObjectMock.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTNonObjectArgumentMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTNonObjectArgumentMatching.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectAndProtocolMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectAndProtocolMock.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTObjectMock.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTOngoingStubbing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTOngoingStubbing.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTProtocolMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/MKTProtocolMock.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/NSInvocation+OCMockito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/NSInvocation+OCMockito.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/OCMockitoIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Headers/OCMockitoIOS.h -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/OCMockitoIOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/OCMockitoIOS -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Support/HockeySDKTests/Vendor/OCMockitoIOS.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Support/HockeySDKTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Support/allfeatures.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/allfeatures.xcconfig -------------------------------------------------------------------------------- /Support/crashonly.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/crashonly.xcconfig -------------------------------------------------------------------------------- /Support/crashonlyextensions.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/crashonlyextensions.xcconfig -------------------------------------------------------------------------------- /Support/default.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/default.xcconfig -------------------------------------------------------------------------------- /Support/feedbackonly.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/feedbackonly.xcconfig -------------------------------------------------------------------------------- /Support/module_allfeatures.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/module_allfeatures.modulemap -------------------------------------------------------------------------------- /Support/module_crashonly.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/module_crashonly.modulemap -------------------------------------------------------------------------------- /Support/module_default.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/module_default.modulemap -------------------------------------------------------------------------------- /Support/module_feedbackonly.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Support/module_feedbackonly.modulemap -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/CrashReporter: -------------------------------------------------------------------------------- 1 | Versions/Current/CrashReporter -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/CrashReporter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/CrashReporter -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/CrashReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/CrashReporter.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashAsyncSignalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashAsyncSignalInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashFeatureConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashFeatureConfig.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashMacros.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashNamespace.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReport.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportApplicationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportApplicationInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportBinaryImageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportBinaryImageInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportExceptionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportExceptionInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportFormatter.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachExceptionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachExceptionInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachineInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessorInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportRegisterInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportRegisterInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSignalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSignalInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportStackFrameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportStackFrameInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSymbolInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSymbolInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSystemInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportTextFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportTextFormatter.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportThreadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReportThreadInfo.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReporter.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReporterConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Headers/PLCrashReporterConfig.h -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitstadium/HockeySDK-iOS/HEAD/Vendor/CrashReporter.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Vendor/CrashReporter.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A --------------------------------------------------------------------------------