@crumbsdk/react-native 0.0.1-rc.3 → 0.0.1-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +270 -8
- package/android/build.gradle +0 -1
- package/android/src/main/java/com/margelo/nitro/crumbsdk/reactnative/CrumbReactNative.kt +121 -3
- package/app.plugin.js +22 -0
- package/ios/CrumbReactNative.swift +135 -3
- package/lib/module/NativeCrumbReactNative.web.js +5 -1
- package/lib/module/NativeCrumbReactNative.web.js.map +1 -1
- package/lib/module/index.js +91 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/javascript-crash-capture.js +497 -0
- package/lib/module/javascript-crash-capture.js.map +1 -0
- package/lib/module/log-buffer.js +22 -2
- package/lib/module/log-buffer.js.map +1 -1
- package/lib/module/screen-context.js +127 -0
- package/lib/module/screen-context.js.map +1 -0
- package/lib/typescript/src/CrumbReactNative.nitro.d.ts +5 -1
- package/lib/typescript/src/CrumbReactNative.nitro.d.ts.map +1 -1
- package/lib/typescript/src/NativeCrumbReactNative.web.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +7 -1
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/javascript-crash-capture.d.ts +74 -0
- package/lib/typescript/src/javascript-crash-capture.d.ts.map +1 -0
- package/lib/typescript/src/log-buffer.d.ts +1 -0
- package/lib/typescript/src/log-buffer.d.ts.map +1 -1
- package/lib/typescript/src/screen-context.d.ts +19 -0
- package/lib/typescript/src/screen-context.d.ts.map +1 -0
- package/lib/typescript/src/types.d.ts +38 -0
- package/lib/typescript/src/types.d.ts.map +1 -1
- package/native/ios/CrumbSDKCore.podspec +28 -0
- package/native/ios/CrumbSDKUI.podspec +38 -0
- package/native/ios/LICENSE +201 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/Info.plist +96 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Info.plist +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Resources/Info.plist +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Resources/Info.plist +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Resources/Info.plist +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Info.plist +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeDirectory +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements-1 +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeResources +462 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeSignature +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Resources/Info.plist +48 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Resources/Info.plist +48 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Resources/Info.plist +48 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Info.plist +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Info.plist +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeDirectory +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements-1 +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeResources +462 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeSignature +0 -0
- package/native/ios/PLCrashReporter/LICENSE.txt +54 -0
- package/native/ios/PLCrashReporter/PLCrashReporter.podspec +19 -0
- package/native/ios/VERSION +1 -0
- package/native/ios/packages/ios/Sources/CrumbCore/Crumb.swift +108 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbConfiguration.swift +212 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbDiagnostics.swift +158 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbFailureStacks.swift +94 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbInfrastructureHealthProbe.swift +110 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbJavaScriptCrashRecovery.swift +136 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbJavaScriptCrashStore.swift +502 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbJavaScriptFailureContext.swift +166 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbLogs.swift +138 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbPolicy.swift +336 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbRendering.swift +68 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbReportEnvelope.swift +666 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbReportQueue.swift +543 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbReportUploader.swift +304 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbRuntime.swift +306 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbSDKVersion.swift +5 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbScreenContext.swift +29 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbDesign.swift +151 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbLocalization.swift +23 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbQualityInstrumentation.swift +30 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbRenderingMonitor.swift +40 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbReporter.swift +1705 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbReporterLifecycle.swift +119 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbScreenshotArtifact.swift +186 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbShakeGestureRecognizer.swift +62 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbUploadCoordinator.swift +113 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbWorkspacePolicyCoordinator.swift +86 -0
- package/native/ios/packages/ios/Sources/CrumbUI/OnDemandDiagnosticsCollector.swift +269 -0
- package/native/ios/packages/ios/Sources/CrumbUI/OnDemandLogCollector.swift +213 -0
- package/native/ios/packages/ios/Sources/CrumbUI/Resources/en.lproj/Localizable.strings +75 -0
- package/native/ios/provenance.json +8 -0
- package/nitrogen/generated/android/c++/JHybridCrumbReactNativeSpec.cpp +32 -3
- package/nitrogen/generated/android/c++/JHybridCrumbReactNativeSpec.hpp +5 -1
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/crumbsdk/reactnative/HybridCrumbReactNativeSpec.kt +17 -1
- package/nitrogen/generated/ios/CrumbReactNative-Swift-Cxx-Bridge.hpp +9 -0
- package/nitrogen/generated/ios/c++/HybridCrumbReactNativeSpecSwift.hpp +30 -2
- package/nitrogen/generated/ios/swift/HybridCrumbReactNativeSpec.swift +5 -1
- package/nitrogen/generated/ios/swift/HybridCrumbReactNativeSpec_cxx.swift +55 -2
- package/nitrogen/generated/shared/c++/HybridCrumbReactNativeSpec.cpp +4 -0
- package/nitrogen/generated/shared/c++/HybridCrumbReactNativeSpec.hpp +5 -1
- package/package.json +15 -5
- package/plugin/podfile.cjs +21 -0
- package/scripts/ios.rb +23 -0
- package/src/CrumbReactNative.nitro.ts +5 -1
- package/src/NativeCrumbReactNative.web.ts +4 -0
- package/src/index.ts +218 -1
- package/src/javascript-crash-capture.ts +774 -0
- package/src/log-buffer.ts +27 -2
- package/src/screen-context.ts +154 -0
- package/src/types.ts +53 -0
|
@@ -0,0 +1,462 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>files</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>Headers/CrashReporter.h</key>
|
|
8
|
+
<data>
|
|
9
|
+
oU1aDvwwGfw5VO+AJWhXmX6M0h0=
|
|
10
|
+
</data>
|
|
11
|
+
<key>Headers/PLCrashFeatureConfig.h</key>
|
|
12
|
+
<data>
|
|
13
|
+
n52MK11FnpreEtuoKRTG8TrBOA8=
|
|
14
|
+
</data>
|
|
15
|
+
<key>Headers/PLCrashMacros.h</key>
|
|
16
|
+
<data>
|
|
17
|
+
EgfEfSDoo+ipdGXg9d2sqTsTOgc=
|
|
18
|
+
</data>
|
|
19
|
+
<key>Headers/PLCrashNamespace.h</key>
|
|
20
|
+
<data>
|
|
21
|
+
iju+4ZZz8ziKAwQQqdBZLrALkGw=
|
|
22
|
+
</data>
|
|
23
|
+
<key>Headers/PLCrashReport.h</key>
|
|
24
|
+
<data>
|
|
25
|
+
ptQ04QKMxVQCm26cXEWze0yxaN8=
|
|
26
|
+
</data>
|
|
27
|
+
<key>Headers/PLCrashReportApplicationInfo.h</key>
|
|
28
|
+
<data>
|
|
29
|
+
7HGr5EXIi29mN+YU/2g9JOLzNZQ=
|
|
30
|
+
</data>
|
|
31
|
+
<key>Headers/PLCrashReportBinaryImageInfo.h</key>
|
|
32
|
+
<data>
|
|
33
|
+
YYrPXoAPADAN+FCwcB8hoCiu7dM=
|
|
34
|
+
</data>
|
|
35
|
+
<key>Headers/PLCrashReportExceptionInfo.h</key>
|
|
36
|
+
<data>
|
|
37
|
+
SeIAzEnJE3Tsh1U4P5y1eLtaZvA=
|
|
38
|
+
</data>
|
|
39
|
+
<key>Headers/PLCrashReportFormatter.h</key>
|
|
40
|
+
<data>
|
|
41
|
+
vX2oRdkxfIkphwG2QZAMBk5eyqQ=
|
|
42
|
+
</data>
|
|
43
|
+
<key>Headers/PLCrashReportMachExceptionInfo.h</key>
|
|
44
|
+
<data>
|
|
45
|
+
AyiNGz3306eBpoXVTRJAfCNQV+o=
|
|
46
|
+
</data>
|
|
47
|
+
<key>Headers/PLCrashReportMachineInfo.h</key>
|
|
48
|
+
<data>
|
|
49
|
+
TiOZqLukq7JTHSd9KkEBL1h0l+4=
|
|
50
|
+
</data>
|
|
51
|
+
<key>Headers/PLCrashReportProcessInfo.h</key>
|
|
52
|
+
<data>
|
|
53
|
+
V2bgTTWHo+hT9UIsfqdg4imc5jk=
|
|
54
|
+
</data>
|
|
55
|
+
<key>Headers/PLCrashReportProcessorInfo.h</key>
|
|
56
|
+
<data>
|
|
57
|
+
VfrHue+YQHMd10UM3qqXLc9DMco=
|
|
58
|
+
</data>
|
|
59
|
+
<key>Headers/PLCrashReportRegisterInfo.h</key>
|
|
60
|
+
<data>
|
|
61
|
+
9YfJiGDAjsVeEJEXLLPLuyG90kM=
|
|
62
|
+
</data>
|
|
63
|
+
<key>Headers/PLCrashReportSignalInfo.h</key>
|
|
64
|
+
<data>
|
|
65
|
+
9Y856RilEnHPftTHteKDKHSKklA=
|
|
66
|
+
</data>
|
|
67
|
+
<key>Headers/PLCrashReportStackFrameInfo.h</key>
|
|
68
|
+
<data>
|
|
69
|
+
EP6JtsWEmThcmN1uU4FRsyGAVB4=
|
|
70
|
+
</data>
|
|
71
|
+
<key>Headers/PLCrashReportSymbolInfo.h</key>
|
|
72
|
+
<data>
|
|
73
|
+
SgBn7ZCRAfWcLbzh+YyTuM5eBXw=
|
|
74
|
+
</data>
|
|
75
|
+
<key>Headers/PLCrashReportSystemInfo.h</key>
|
|
76
|
+
<data>
|
|
77
|
+
Fa04Y76WD2169tSMqmenFfQQx+U=
|
|
78
|
+
</data>
|
|
79
|
+
<key>Headers/PLCrashReportTextFormatter.h</key>
|
|
80
|
+
<data>
|
|
81
|
+
s+xx0aFpMXb+vZIFD5Lcjx11GxE=
|
|
82
|
+
</data>
|
|
83
|
+
<key>Headers/PLCrashReportThreadInfo.h</key>
|
|
84
|
+
<data>
|
|
85
|
+
iyPOBt80+xmoHr9TvNQsCg3gRc4=
|
|
86
|
+
</data>
|
|
87
|
+
<key>Headers/PLCrashReporter.h</key>
|
|
88
|
+
<data>
|
|
89
|
+
jNwncFi3pPdm4qe1nbVV1cSQ9wY=
|
|
90
|
+
</data>
|
|
91
|
+
<key>Headers/PLCrashReporterConfig.h</key>
|
|
92
|
+
<data>
|
|
93
|
+
0vRm50Kg+aJ6/vw5QaCy8+PXkGE=
|
|
94
|
+
</data>
|
|
95
|
+
<key>Info.plist</key>
|
|
96
|
+
<data>
|
|
97
|
+
YUp21dtYTVdVVwM6eh7G5Qu1gz8=
|
|
98
|
+
</data>
|
|
99
|
+
<key>Modules/module.modulemap</key>
|
|
100
|
+
<data>
|
|
101
|
+
GevHSzc93CvcJCM//BXzSveGpGE=
|
|
102
|
+
</data>
|
|
103
|
+
<key>PrivacyInfo.xcprivacy</key>
|
|
104
|
+
<data>
|
|
105
|
+
O3Zhkkf3uaxqyTk0D3zchR8Gees=
|
|
106
|
+
</data>
|
|
107
|
+
</dict>
|
|
108
|
+
<key>files2</key>
|
|
109
|
+
<dict>
|
|
110
|
+
<key>Headers/CrashReporter.h</key>
|
|
111
|
+
<dict>
|
|
112
|
+
<key>hash</key>
|
|
113
|
+
<data>
|
|
114
|
+
oU1aDvwwGfw5VO+AJWhXmX6M0h0=
|
|
115
|
+
</data>
|
|
116
|
+
<key>hash2</key>
|
|
117
|
+
<data>
|
|
118
|
+
fJg+ghi2Wtl6wuJBTakT9vU+csdID4zshN5fDkm3RXQ=
|
|
119
|
+
</data>
|
|
120
|
+
</dict>
|
|
121
|
+
<key>Headers/PLCrashFeatureConfig.h</key>
|
|
122
|
+
<dict>
|
|
123
|
+
<key>hash</key>
|
|
124
|
+
<data>
|
|
125
|
+
n52MK11FnpreEtuoKRTG8TrBOA8=
|
|
126
|
+
</data>
|
|
127
|
+
<key>hash2</key>
|
|
128
|
+
<data>
|
|
129
|
+
vm9fLELpj4LXkcSkP2mcp0HkR29lDezMCLbyVX/p524=
|
|
130
|
+
</data>
|
|
131
|
+
</dict>
|
|
132
|
+
<key>Headers/PLCrashMacros.h</key>
|
|
133
|
+
<dict>
|
|
134
|
+
<key>hash</key>
|
|
135
|
+
<data>
|
|
136
|
+
EgfEfSDoo+ipdGXg9d2sqTsTOgc=
|
|
137
|
+
</data>
|
|
138
|
+
<key>hash2</key>
|
|
139
|
+
<data>
|
|
140
|
+
onONQ05LiikrFVtyJyeHxsRLgrz8/U0BLgGlQXvbeRE=
|
|
141
|
+
</data>
|
|
142
|
+
</dict>
|
|
143
|
+
<key>Headers/PLCrashNamespace.h</key>
|
|
144
|
+
<dict>
|
|
145
|
+
<key>hash</key>
|
|
146
|
+
<data>
|
|
147
|
+
iju+4ZZz8ziKAwQQqdBZLrALkGw=
|
|
148
|
+
</data>
|
|
149
|
+
<key>hash2</key>
|
|
150
|
+
<data>
|
|
151
|
+
ZERqK4S7+eVGTv2RvTDivKwapSL6OiHx6nnGyb9+Kmw=
|
|
152
|
+
</data>
|
|
153
|
+
</dict>
|
|
154
|
+
<key>Headers/PLCrashReport.h</key>
|
|
155
|
+
<dict>
|
|
156
|
+
<key>hash</key>
|
|
157
|
+
<data>
|
|
158
|
+
ptQ04QKMxVQCm26cXEWze0yxaN8=
|
|
159
|
+
</data>
|
|
160
|
+
<key>hash2</key>
|
|
161
|
+
<data>
|
|
162
|
+
oigM4mGIBgIjHFyhxQlgRc9p15eSCb6EMmhidmtuGSI=
|
|
163
|
+
</data>
|
|
164
|
+
</dict>
|
|
165
|
+
<key>Headers/PLCrashReportApplicationInfo.h</key>
|
|
166
|
+
<dict>
|
|
167
|
+
<key>hash</key>
|
|
168
|
+
<data>
|
|
169
|
+
7HGr5EXIi29mN+YU/2g9JOLzNZQ=
|
|
170
|
+
</data>
|
|
171
|
+
<key>hash2</key>
|
|
172
|
+
<data>
|
|
173
|
+
XIkLxmgrV/OcKL74zyvx2U6E3MdJH5WeqgpbGUgp53c=
|
|
174
|
+
</data>
|
|
175
|
+
</dict>
|
|
176
|
+
<key>Headers/PLCrashReportBinaryImageInfo.h</key>
|
|
177
|
+
<dict>
|
|
178
|
+
<key>hash</key>
|
|
179
|
+
<data>
|
|
180
|
+
YYrPXoAPADAN+FCwcB8hoCiu7dM=
|
|
181
|
+
</data>
|
|
182
|
+
<key>hash2</key>
|
|
183
|
+
<data>
|
|
184
|
+
eT6yTkeiQdmlEeoebligwyWttLMynCgN5RsrIea7ukc=
|
|
185
|
+
</data>
|
|
186
|
+
</dict>
|
|
187
|
+
<key>Headers/PLCrashReportExceptionInfo.h</key>
|
|
188
|
+
<dict>
|
|
189
|
+
<key>hash</key>
|
|
190
|
+
<data>
|
|
191
|
+
SeIAzEnJE3Tsh1U4P5y1eLtaZvA=
|
|
192
|
+
</data>
|
|
193
|
+
<key>hash2</key>
|
|
194
|
+
<data>
|
|
195
|
+
g8289CCEX4qlqnWK611dsuvo2awGVNM+0755ydof0/c=
|
|
196
|
+
</data>
|
|
197
|
+
</dict>
|
|
198
|
+
<key>Headers/PLCrashReportFormatter.h</key>
|
|
199
|
+
<dict>
|
|
200
|
+
<key>hash</key>
|
|
201
|
+
<data>
|
|
202
|
+
vX2oRdkxfIkphwG2QZAMBk5eyqQ=
|
|
203
|
+
</data>
|
|
204
|
+
<key>hash2</key>
|
|
205
|
+
<data>
|
|
206
|
+
JJT26JJEqQMNGhrYjRid8UfRBFNc5LJVMzZHHcJaSYA=
|
|
207
|
+
</data>
|
|
208
|
+
</dict>
|
|
209
|
+
<key>Headers/PLCrashReportMachExceptionInfo.h</key>
|
|
210
|
+
<dict>
|
|
211
|
+
<key>hash</key>
|
|
212
|
+
<data>
|
|
213
|
+
AyiNGz3306eBpoXVTRJAfCNQV+o=
|
|
214
|
+
</data>
|
|
215
|
+
<key>hash2</key>
|
|
216
|
+
<data>
|
|
217
|
+
MrRxfp9H7oPEZl2KxT+nc/vkV5kMN1WBFLkkpNiM/eo=
|
|
218
|
+
</data>
|
|
219
|
+
</dict>
|
|
220
|
+
<key>Headers/PLCrashReportMachineInfo.h</key>
|
|
221
|
+
<dict>
|
|
222
|
+
<key>hash</key>
|
|
223
|
+
<data>
|
|
224
|
+
TiOZqLukq7JTHSd9KkEBL1h0l+4=
|
|
225
|
+
</data>
|
|
226
|
+
<key>hash2</key>
|
|
227
|
+
<data>
|
|
228
|
+
GjnpbtlgfEWdUY1EtMl0yOWpIuDPqidZNc00hSznKhY=
|
|
229
|
+
</data>
|
|
230
|
+
</dict>
|
|
231
|
+
<key>Headers/PLCrashReportProcessInfo.h</key>
|
|
232
|
+
<dict>
|
|
233
|
+
<key>hash</key>
|
|
234
|
+
<data>
|
|
235
|
+
V2bgTTWHo+hT9UIsfqdg4imc5jk=
|
|
236
|
+
</data>
|
|
237
|
+
<key>hash2</key>
|
|
238
|
+
<data>
|
|
239
|
+
MGu1txURe1Rm9AVqwNnOS0gaiplEAbYhFEPySOU9jh0=
|
|
240
|
+
</data>
|
|
241
|
+
</dict>
|
|
242
|
+
<key>Headers/PLCrashReportProcessorInfo.h</key>
|
|
243
|
+
<dict>
|
|
244
|
+
<key>hash</key>
|
|
245
|
+
<data>
|
|
246
|
+
VfrHue+YQHMd10UM3qqXLc9DMco=
|
|
247
|
+
</data>
|
|
248
|
+
<key>hash2</key>
|
|
249
|
+
<data>
|
|
250
|
+
hDw30bQjvPyRih+4mCcPQ496eD4zFss/ziBxKoPG3xA=
|
|
251
|
+
</data>
|
|
252
|
+
</dict>
|
|
253
|
+
<key>Headers/PLCrashReportRegisterInfo.h</key>
|
|
254
|
+
<dict>
|
|
255
|
+
<key>hash</key>
|
|
256
|
+
<data>
|
|
257
|
+
9YfJiGDAjsVeEJEXLLPLuyG90kM=
|
|
258
|
+
</data>
|
|
259
|
+
<key>hash2</key>
|
|
260
|
+
<data>
|
|
261
|
+
8ESmPEtUO7heYCn/Q5Pc3wiwZASuZp44QN5Xxlz4HaI=
|
|
262
|
+
</data>
|
|
263
|
+
</dict>
|
|
264
|
+
<key>Headers/PLCrashReportSignalInfo.h</key>
|
|
265
|
+
<dict>
|
|
266
|
+
<key>hash</key>
|
|
267
|
+
<data>
|
|
268
|
+
9Y856RilEnHPftTHteKDKHSKklA=
|
|
269
|
+
</data>
|
|
270
|
+
<key>hash2</key>
|
|
271
|
+
<data>
|
|
272
|
+
Mmc6hpNWt1Cmq9HmdAElX2cl3PGJGPtJm30AcIgx2HA=
|
|
273
|
+
</data>
|
|
274
|
+
</dict>
|
|
275
|
+
<key>Headers/PLCrashReportStackFrameInfo.h</key>
|
|
276
|
+
<dict>
|
|
277
|
+
<key>hash</key>
|
|
278
|
+
<data>
|
|
279
|
+
EP6JtsWEmThcmN1uU4FRsyGAVB4=
|
|
280
|
+
</data>
|
|
281
|
+
<key>hash2</key>
|
|
282
|
+
<data>
|
|
283
|
+
ffBRjGecIsMCL2JMrRmss7F5OPSzU45qYDC8TWcIMOY=
|
|
284
|
+
</data>
|
|
285
|
+
</dict>
|
|
286
|
+
<key>Headers/PLCrashReportSymbolInfo.h</key>
|
|
287
|
+
<dict>
|
|
288
|
+
<key>hash</key>
|
|
289
|
+
<data>
|
|
290
|
+
SgBn7ZCRAfWcLbzh+YyTuM5eBXw=
|
|
291
|
+
</data>
|
|
292
|
+
<key>hash2</key>
|
|
293
|
+
<data>
|
|
294
|
+
kTTqp5UPEJCgd7/W9c+1Ip8NxKhm7EIQGHYoViZ0o7c=
|
|
295
|
+
</data>
|
|
296
|
+
</dict>
|
|
297
|
+
<key>Headers/PLCrashReportSystemInfo.h</key>
|
|
298
|
+
<dict>
|
|
299
|
+
<key>hash</key>
|
|
300
|
+
<data>
|
|
301
|
+
Fa04Y76WD2169tSMqmenFfQQx+U=
|
|
302
|
+
</data>
|
|
303
|
+
<key>hash2</key>
|
|
304
|
+
<data>
|
|
305
|
+
I5Yum7r87ccS+ON0vjh8ge7e/olRNfJHGYcFgldj0aM=
|
|
306
|
+
</data>
|
|
307
|
+
</dict>
|
|
308
|
+
<key>Headers/PLCrashReportTextFormatter.h</key>
|
|
309
|
+
<dict>
|
|
310
|
+
<key>hash</key>
|
|
311
|
+
<data>
|
|
312
|
+
s+xx0aFpMXb+vZIFD5Lcjx11GxE=
|
|
313
|
+
</data>
|
|
314
|
+
<key>hash2</key>
|
|
315
|
+
<data>
|
|
316
|
+
HHkcwWLWo7ugEPsWp+ZjORM+2Fuwr/+78P6gf1tie9U=
|
|
317
|
+
</data>
|
|
318
|
+
</dict>
|
|
319
|
+
<key>Headers/PLCrashReportThreadInfo.h</key>
|
|
320
|
+
<dict>
|
|
321
|
+
<key>hash</key>
|
|
322
|
+
<data>
|
|
323
|
+
iyPOBt80+xmoHr9TvNQsCg3gRc4=
|
|
324
|
+
</data>
|
|
325
|
+
<key>hash2</key>
|
|
326
|
+
<data>
|
|
327
|
+
5rRisSdeN73nu5ZYLWH+Q9LsqbEyvqNxksnmJrcRMck=
|
|
328
|
+
</data>
|
|
329
|
+
</dict>
|
|
330
|
+
<key>Headers/PLCrashReporter.h</key>
|
|
331
|
+
<dict>
|
|
332
|
+
<key>hash</key>
|
|
333
|
+
<data>
|
|
334
|
+
jNwncFi3pPdm4qe1nbVV1cSQ9wY=
|
|
335
|
+
</data>
|
|
336
|
+
<key>hash2</key>
|
|
337
|
+
<data>
|
|
338
|
+
qslLDp0AN8qDtIiTfd6V3zvWCRj4XfpuAw944AJ6BDY=
|
|
339
|
+
</data>
|
|
340
|
+
</dict>
|
|
341
|
+
<key>Headers/PLCrashReporterConfig.h</key>
|
|
342
|
+
<dict>
|
|
343
|
+
<key>hash</key>
|
|
344
|
+
<data>
|
|
345
|
+
0vRm50Kg+aJ6/vw5QaCy8+PXkGE=
|
|
346
|
+
</data>
|
|
347
|
+
<key>hash2</key>
|
|
348
|
+
<data>
|
|
349
|
+
aDohYxjcZ95qruvz9Z/ZDSv+4CrhQ1N8VkyAY9J1dWM=
|
|
350
|
+
</data>
|
|
351
|
+
</dict>
|
|
352
|
+
<key>Modules/module.modulemap</key>
|
|
353
|
+
<dict>
|
|
354
|
+
<key>hash</key>
|
|
355
|
+
<data>
|
|
356
|
+
GevHSzc93CvcJCM//BXzSveGpGE=
|
|
357
|
+
</data>
|
|
358
|
+
<key>hash2</key>
|
|
359
|
+
<data>
|
|
360
|
+
iru6hi0cnStthQ0L2aQ0Hxz0/f4aP3jQgCrN0ok2aUM=
|
|
361
|
+
</data>
|
|
362
|
+
</dict>
|
|
363
|
+
<key>PrivacyInfo.xcprivacy</key>
|
|
364
|
+
<dict>
|
|
365
|
+
<key>hash</key>
|
|
366
|
+
<data>
|
|
367
|
+
O3Zhkkf3uaxqyTk0D3zchR8Gees=
|
|
368
|
+
</data>
|
|
369
|
+
<key>hash2</key>
|
|
370
|
+
<data>
|
|
371
|
+
WdWnMSNl52vRPwKNpI8BQV9PUBP0rC8ybQKoTQJKewI=
|
|
372
|
+
</data>
|
|
373
|
+
</dict>
|
|
374
|
+
</dict>
|
|
375
|
+
<key>rules</key>
|
|
376
|
+
<dict>
|
|
377
|
+
<key>^.*</key>
|
|
378
|
+
<true/>
|
|
379
|
+
<key>^.*\.lproj/</key>
|
|
380
|
+
<dict>
|
|
381
|
+
<key>optional</key>
|
|
382
|
+
<true/>
|
|
383
|
+
<key>weight</key>
|
|
384
|
+
<real>1000</real>
|
|
385
|
+
</dict>
|
|
386
|
+
<key>^.*\.lproj/locversion.plist$</key>
|
|
387
|
+
<dict>
|
|
388
|
+
<key>omit</key>
|
|
389
|
+
<true/>
|
|
390
|
+
<key>weight</key>
|
|
391
|
+
<real>1100</real>
|
|
392
|
+
</dict>
|
|
393
|
+
<key>^Base\.lproj/</key>
|
|
394
|
+
<dict>
|
|
395
|
+
<key>weight</key>
|
|
396
|
+
<real>1010</real>
|
|
397
|
+
</dict>
|
|
398
|
+
<key>^version.plist$</key>
|
|
399
|
+
<true/>
|
|
400
|
+
</dict>
|
|
401
|
+
<key>rules2</key>
|
|
402
|
+
<dict>
|
|
403
|
+
<key>.*\.dSYM($|/)</key>
|
|
404
|
+
<dict>
|
|
405
|
+
<key>weight</key>
|
|
406
|
+
<real>11</real>
|
|
407
|
+
</dict>
|
|
408
|
+
<key>^(.*/)?\.DS_Store$</key>
|
|
409
|
+
<dict>
|
|
410
|
+
<key>omit</key>
|
|
411
|
+
<true/>
|
|
412
|
+
<key>weight</key>
|
|
413
|
+
<real>2000</real>
|
|
414
|
+
</dict>
|
|
415
|
+
<key>^.*</key>
|
|
416
|
+
<true/>
|
|
417
|
+
<key>^.*\.lproj/</key>
|
|
418
|
+
<dict>
|
|
419
|
+
<key>optional</key>
|
|
420
|
+
<true/>
|
|
421
|
+
<key>weight</key>
|
|
422
|
+
<real>1000</real>
|
|
423
|
+
</dict>
|
|
424
|
+
<key>^.*\.lproj/locversion.plist$</key>
|
|
425
|
+
<dict>
|
|
426
|
+
<key>omit</key>
|
|
427
|
+
<true/>
|
|
428
|
+
<key>weight</key>
|
|
429
|
+
<real>1100</real>
|
|
430
|
+
</dict>
|
|
431
|
+
<key>^Base\.lproj/</key>
|
|
432
|
+
<dict>
|
|
433
|
+
<key>weight</key>
|
|
434
|
+
<real>1010</real>
|
|
435
|
+
</dict>
|
|
436
|
+
<key>^Info\.plist$</key>
|
|
437
|
+
<dict>
|
|
438
|
+
<key>omit</key>
|
|
439
|
+
<true/>
|
|
440
|
+
<key>weight</key>
|
|
441
|
+
<real>20</real>
|
|
442
|
+
</dict>
|
|
443
|
+
<key>^PkgInfo$</key>
|
|
444
|
+
<dict>
|
|
445
|
+
<key>omit</key>
|
|
446
|
+
<true/>
|
|
447
|
+
<key>weight</key>
|
|
448
|
+
<real>20</real>
|
|
449
|
+
</dict>
|
|
450
|
+
<key>^embedded\.provisionprofile$</key>
|
|
451
|
+
<dict>
|
|
452
|
+
<key>weight</key>
|
|
453
|
+
<real>20</real>
|
|
454
|
+
</dict>
|
|
455
|
+
<key>^version\.plist$</key>
|
|
456
|
+
<dict>
|
|
457
|
+
<key>weight</key>
|
|
458
|
+
<real>20</real>
|
|
459
|
+
</dict>
|
|
460
|
+
</dict>
|
|
461
|
+
</dict>
|
|
462
|
+
</plist>
|
|
File without changes
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
Except as noted below, PLCrashReporter is provided under the
|
|
2
|
+
following license:
|
|
3
|
+
|
|
4
|
+
Copyright (c) Microsoft Corporation.
|
|
5
|
+
Copyright (c) 2008 - 2014 Plausible Labs Cooperative, Inc.
|
|
6
|
+
All rights reserved.
|
|
7
|
+
|
|
8
|
+
Permission is hereby granted, free of charge, to any person
|
|
9
|
+
obtaining a copy of this software and associated documentation
|
|
10
|
+
files (the "Software"), to deal in the Software without
|
|
11
|
+
restriction, including without limitation the rights to use,
|
|
12
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
+
copies of the Software, and to permit persons to whom the
|
|
14
|
+
Software is furnished to do so, subject to the following
|
|
15
|
+
conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be
|
|
18
|
+
included in all copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
21
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
22
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
23
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
24
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
25
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
26
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
27
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
28
|
+
|
|
29
|
+
Additional contributions have been made under the same license terms
|
|
30
|
+
as above, with copyright held by their respective authors:
|
|
31
|
+
|
|
32
|
+
Damian Morris <damian@moso.com.au>
|
|
33
|
+
Copyright (c) 2010 MOSO Corporation, Pty Ltd.
|
|
34
|
+
All rights reserved.
|
|
35
|
+
|
|
36
|
+
HockeyApp/Bitstadium
|
|
37
|
+
Copyright (c) 2012 HockeyApp, Bit Stadium GmbH.
|
|
38
|
+
All rights reserved.
|
|
39
|
+
|
|
40
|
+
The protobuf-c library, as well as the PLCrashLogWriterEncoding.c
|
|
41
|
+
file are licensed as follows:
|
|
42
|
+
|
|
43
|
+
Copyright 2008, Dave Benson.
|
|
44
|
+
|
|
45
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
46
|
+
you may not use this file except in compliance with
|
|
47
|
+
the License. You may obtain a copy of the License
|
|
48
|
+
at http://www.apache.org/licenses/LICENSE-2.0 Unless
|
|
49
|
+
required by applicable law or agreed to in writing,
|
|
50
|
+
software distributed under the License is distributed on
|
|
51
|
+
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
52
|
+
KIND, either express or implied. See the License for the
|
|
53
|
+
specific language governing permissions and limitations
|
|
54
|
+
under the License.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Mirrors the upstream 1.12.0 binary podspec. The checked release is bundled in
|
|
2
|
+
# npm at packaging time; CocoaPods reads it locally and never downloads it.
|
|
3
|
+
Pod::Spec.new do |spec|
|
|
4
|
+
spec.cocoapods_version = '>= 1.10'
|
|
5
|
+
spec.name = 'PLCrashReporter'
|
|
6
|
+
spec.version = '1.12.0'
|
|
7
|
+
spec.summary = 'Reliable, open-source crash reporting for iOS, macOS and tvOS.'
|
|
8
|
+
spec.homepage = 'https://github.com/microsoft/plcrashreporter'
|
|
9
|
+
spec.license = { :type => 'MIT', :file => 'LICENSE.txt' }
|
|
10
|
+
spec.authors = { 'Microsoft' => 'appcentersdk@microsoft.com' }
|
|
11
|
+
spec.source = { :http => 'https://github.com/microsoft/plcrashreporter/releases/download/1.12.0/PLCrashReporter-Static-1.12.0.xcframework.zip', :sha256 => '9e7124d63316a5e354fdeec631a3d669b1eaa533d3767a0089a05ab0eedc02b5' }
|
|
12
|
+
spec.resource_bundle = { 'PLCrashReporter' => 'CrashReporter.xcframework/PrivacyInfo.xcprivacy' }
|
|
13
|
+
spec.ios.deployment_target = '12.0'
|
|
14
|
+
spec.osx.deployment_target = '11.5'
|
|
15
|
+
spec.tvos.deployment_target = '12.0'
|
|
16
|
+
spec.vendored_frameworks = 'CrashReporter.xcframework'
|
|
17
|
+
spec.libraries = 'c++'
|
|
18
|
+
spec.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lc++' }
|
|
19
|
+
end
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.1-rc.4
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import Foundation
|
|
2
|
+
|
|
3
|
+
public enum Crumb {
|
|
4
|
+
/// Adapter bridge. Replaces the current static screen context; malformed input clears it.
|
|
5
|
+
public static func setScreenContext(_ json: String) {
|
|
6
|
+
CrumbRuntime.shared.setScreenContext(json)
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
public static func start(_ configuration: CrumbConfiguration) throws {
|
|
10
|
+
try CrumbRuntime.shared.start(configuration)
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/// Returns whether the current effective policy permits adapter-owned logs
|
|
14
|
+
/// to be collected at this moment.
|
|
15
|
+
public static func canCollectLogs() -> Bool {
|
|
16
|
+
guard let settings = try? CrumbRuntime.shared.reportSettings() else { return false }
|
|
17
|
+
return settings.diagnostics.logs.enabled && settings.evidence.contains(.logs)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/// Synchronously accepts a sanitized JavaScript failure from the React
|
|
21
|
+
/// Native adapter. Native uncaught-exception hooks are never installed.
|
|
22
|
+
public static func recordJavaScriptCrash(_ recordJSON: String) {
|
|
23
|
+
guard let settings = try? CrumbRuntime.shared.reportSettings(),
|
|
24
|
+
settings.diagnostics.javascriptCrashCaptureEnabled else {
|
|
25
|
+
return
|
|
26
|
+
}
|
|
27
|
+
_ = CrumbJavaScriptCrashStore.shared.record(recordJSON, failureContext: CrumbJavaScriptFailureContext.capture(settings: settings), includeBreadcrumbs: settings.diagnostics.logs.enabled && settings.evidence.contains(.logs))
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/// Moves pending JavaScript failures into the regular durable report queue.
|
|
31
|
+
public static func recoverJavaScriptCrashes() async -> Bool {
|
|
32
|
+
guard let settings = try? CrumbRuntime.shared.reportSettings(),
|
|
33
|
+
settings.diagnostics.javascriptCrashCaptureEnabled else {
|
|
34
|
+
return false
|
|
35
|
+
}
|
|
36
|
+
return await CrumbJavaScriptCrashRecovery.recover(settings: settings)
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
package static func reportSettings() throws -> CrumbReportSettings {
|
|
40
|
+
try CrumbRuntime.shared.reportSettings()
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
package static func uploadSettings() throws -> CrumbUploadSettings? {
|
|
44
|
+
try CrumbRuntime.shared.uploadSettings()
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
package static func workspacePolicyFetchSettings() throws -> CrumbPolicyFetchSettings? {
|
|
48
|
+
try CrumbRuntime.shared.workspacePolicyFetchSettings()
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
package static func workspacePolicyCacheKey() throws -> String {
|
|
52
|
+
try CrumbRuntime.shared.workspacePolicyCacheKey()
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
package static func beginWorkspacePolicyFetch() {
|
|
56
|
+
CrumbRuntime.shared.beginWorkspacePolicyFetch()
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@discardableResult
|
|
60
|
+
package static func applyWorkspacePolicy(
|
|
61
|
+
_ policy: CrumbWorkspacePolicy,
|
|
62
|
+
source: CrumbPolicySource
|
|
63
|
+
) -> Bool {
|
|
64
|
+
let applied = CrumbRuntime.shared.applyWorkspacePolicy(policy, source: source)
|
|
65
|
+
if (try? reportSettings().evidence.contains(.performance)) != true { CrumbRenderingBuffer.shared.clear() }
|
|
66
|
+
return applied
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
package static func markWorkspacePolicyUnavailable() {
|
|
70
|
+
CrumbRuntime.shared.markWorkspacePolicyUnavailable()
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
package static func buildReport(
|
|
74
|
+
_ input: CrumbReportBuildInput
|
|
75
|
+
) throws -> CrumbSerializedReportEnvelope {
|
|
76
|
+
try CrumbReportEnvelopeBuilder.build(settings: reportSettings(), input: input)
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
package static func newReportID() -> String {
|
|
80
|
+
CrumbReportEnvelopeBuilder.makeReportID()
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
package static func resetForTesting() {
|
|
84
|
+
CrumbRuntime.shared.resetForTesting()
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
public enum CrumbStartError: Error, Equatable {
|
|
89
|
+
case emptyProjectKey
|
|
90
|
+
case invalidProjectKey
|
|
91
|
+
case emptyEnvironment
|
|
92
|
+
case invalidEnvironment
|
|
93
|
+
case invalidRelease
|
|
94
|
+
case invalidScreenshotDimension
|
|
95
|
+
case invalidScreenshotByteLimit
|
|
96
|
+
case invalidDiagnosticsTimeout
|
|
97
|
+
case invalidHealthCheckURL
|
|
98
|
+
case invalidLogLookback
|
|
99
|
+
case invalidLogLimits
|
|
100
|
+
case invalidIngestionURL
|
|
101
|
+
case invalidReporterFields
|
|
102
|
+
case invalidEvidence
|
|
103
|
+
case invalidApplicationMetadata
|
|
104
|
+
case invalidCustomContext
|
|
105
|
+
case invalidWorkspacePolicyTimeout
|
|
106
|
+
case invalidWorkspacePolicyURL
|
|
107
|
+
case alreadyStartedWithDifferentConfiguration
|
|
108
|
+
}
|