@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
|
@@ -55,7 +55,10 @@ final class CrumbReactNative: HybridCrumbReactNativeSpec {
|
|
|
55
55
|
maximumEntries: logOptions.maximumEntries ?? 200,
|
|
56
56
|
maximumBytes: logOptions.maximumBytes ?? 65_536,
|
|
57
57
|
provider: logBuffer
|
|
58
|
-
)
|
|
58
|
+
),
|
|
59
|
+
javascriptCrashCaptureEnabled:
|
|
60
|
+
payload.diagnostics?.javascriptCrashCapture?.enabled ?? false,
|
|
61
|
+
renderingEnabled: payload.diagnostics?.renderingEnabled ?? false
|
|
59
62
|
),
|
|
60
63
|
privacy: CrumbPrivacyOptions(
|
|
61
64
|
maskAllTextInputs: payload.privacy?.maskAllTextInputs ?? true,
|
|
@@ -64,24 +67,52 @@ final class CrumbReactNative: HybridCrumbReactNativeSpec {
|
|
|
64
67
|
),
|
|
65
68
|
upload: CrumbUploadOptions(
|
|
66
69
|
ingestionURL: try payload.upload?.ingestionURL()
|
|
70
|
+
),
|
|
71
|
+
reporter: CrumbReporterOptions(
|
|
72
|
+
theme: payload.reporter?.theme?.native ?? .system,
|
|
73
|
+
visibleFields: Set(
|
|
74
|
+
(payload.reporter?.visibleFields ?? [.category, .description]).map(\.native)
|
|
75
|
+
)
|
|
76
|
+
),
|
|
77
|
+
evidence: Set(
|
|
78
|
+
(payload.evidence ?? EvidencePayload.allCases).map(\.native)
|
|
79
|
+
),
|
|
80
|
+
application: CrumbApplicationMetadata(name: payload.application?.name),
|
|
81
|
+
customContext: CrumbCustomContextOptions(
|
|
82
|
+
values: payload.customContext?.values ?? [:],
|
|
83
|
+
allowedKeys: Set(payload.customContext?.allowedKeys ?? [])
|
|
84
|
+
),
|
|
85
|
+
workspacePolicy: CrumbWorkspacePolicyOptions(
|
|
86
|
+
url: try payload.workspacePolicy?.url(),
|
|
87
|
+
timeout: payload.workspacePolicy?.timeoutMs
|
|
88
|
+
.map { TimeInterval(milliseconds: $0) } ?? 2
|
|
67
89
|
)
|
|
68
90
|
)
|
|
69
91
|
)
|
|
70
92
|
}
|
|
71
93
|
|
|
94
|
+
func setScreenContext(screenJson: String) {
|
|
95
|
+
Crumb.setScreenContext(screenJson)
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
func canCollectLogs() -> Bool {
|
|
99
|
+
Crumb.canCollectLogs()
|
|
100
|
+
}
|
|
101
|
+
|
|
72
102
|
func installReporter() throws -> Promise<Bool> {
|
|
73
103
|
Promise.async { @MainActor in
|
|
74
104
|
Crumb.installReporter()
|
|
75
105
|
}
|
|
76
106
|
}
|
|
77
107
|
|
|
78
|
-
func show() throws -> Promise<Bool> {
|
|
108
|
+
func show(screenJson: String) throws -> Promise<Bool> {
|
|
79
109
|
Promise.async { @MainActor in
|
|
80
|
-
Crumb.show()
|
|
110
|
+
Crumb.show(screenContextJSON: screenJson)
|
|
81
111
|
}
|
|
82
112
|
}
|
|
83
113
|
|
|
84
114
|
func addLog(entryJson: String) throws {
|
|
115
|
+
guard Crumb.canCollectLogs() else { return }
|
|
85
116
|
let data = Data(entryJson.utf8)
|
|
86
117
|
let entry = try decoder.decode(LogEntryPayload.self, from: data)
|
|
87
118
|
logBuffer.append(entry.native)
|
|
@@ -90,6 +121,16 @@ final class CrumbReactNative: HybridCrumbReactNativeSpec {
|
|
|
90
121
|
func clearLogs() throws {
|
|
91
122
|
logBuffer.clear()
|
|
92
123
|
}
|
|
124
|
+
|
|
125
|
+
func recordJavaScriptCrash(recordJson: String) throws {
|
|
126
|
+
Crumb.recordJavaScriptCrash(recordJson)
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
func recoverJavaScriptCrashes() throws -> Promise<Bool> {
|
|
130
|
+
Promise.async {
|
|
131
|
+
await Crumb.recoverJavaScriptCrashes()
|
|
132
|
+
}
|
|
133
|
+
}
|
|
93
134
|
}
|
|
94
135
|
|
|
95
136
|
private struct ConfigurationPayload: Decodable {
|
|
@@ -100,6 +141,11 @@ private struct ConfigurationPayload: Decodable {
|
|
|
100
141
|
let capture: CapturePayload?
|
|
101
142
|
let diagnostics: DiagnosticsPayload?
|
|
102
143
|
let privacy: PrivacyPayload?
|
|
144
|
+
let reporter: ReporterPayload?
|
|
145
|
+
let evidence: [EvidencePayload]?
|
|
146
|
+
let application: ApplicationPayload?
|
|
147
|
+
let customContext: CustomContextPayload?
|
|
148
|
+
let workspacePolicy: WorkspacePolicyPayload?
|
|
103
149
|
let upload: UploadPayload?
|
|
104
150
|
}
|
|
105
151
|
|
|
@@ -131,6 +177,8 @@ private struct DiagnosticsPayload: Decodable {
|
|
|
131
177
|
let healthCheckUrl: String?
|
|
132
178
|
let timeoutMs: Int?
|
|
133
179
|
let logs: LogOptionsPayload?
|
|
180
|
+
let javascriptCrashCapture: JavaScriptCrashCapturePayload?
|
|
181
|
+
let renderingEnabled: Bool?
|
|
134
182
|
|
|
135
183
|
func healthCheckURL() throws -> URL? {
|
|
136
184
|
guard let healthCheckUrl else { return nil }
|
|
@@ -141,6 +189,10 @@ private struct DiagnosticsPayload: Decodable {
|
|
|
141
189
|
}
|
|
142
190
|
}
|
|
143
191
|
|
|
192
|
+
private struct JavaScriptCrashCapturePayload: Decodable {
|
|
193
|
+
let enabled: Bool?
|
|
194
|
+
}
|
|
195
|
+
|
|
144
196
|
private struct LogOptionsPayload: Decodable {
|
|
145
197
|
let enabled: Bool?
|
|
146
198
|
let lookbackMs: Int?
|
|
@@ -165,6 +217,86 @@ private struct PrivacyPayload: Decodable {
|
|
|
165
217
|
let maskScreenshotsBeforeUpload: Bool?
|
|
166
218
|
}
|
|
167
219
|
|
|
220
|
+
private struct ReporterPayload: Decodable {
|
|
221
|
+
let theme: ThemePayload?
|
|
222
|
+
let visibleFields: [ReporterFieldPayload]?
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
private enum ThemePayload: String, Decodable {
|
|
226
|
+
case system
|
|
227
|
+
case light
|
|
228
|
+
case dark
|
|
229
|
+
|
|
230
|
+
var native: CrumbTheme {
|
|
231
|
+
switch self {
|
|
232
|
+
case .system: .system
|
|
233
|
+
case .light: .light
|
|
234
|
+
case .dark: .dark
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
private enum ReporterFieldPayload: String, Decodable {
|
|
240
|
+
case category
|
|
241
|
+
case description
|
|
242
|
+
|
|
243
|
+
var native: CrumbReporterField {
|
|
244
|
+
switch self {
|
|
245
|
+
case .category: .category
|
|
246
|
+
case .description: .description
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
private enum EvidencePayload: String, CaseIterable, Decodable {
|
|
252
|
+
case screenshot
|
|
253
|
+
case performance
|
|
254
|
+
case network
|
|
255
|
+
case logs
|
|
256
|
+
case threadStacks = "thread_stacks"
|
|
257
|
+
case healthCheck = "health_check"
|
|
258
|
+
case customContext = "custom_context"
|
|
259
|
+
|
|
260
|
+
var native: CrumbEvidenceCategory {
|
|
261
|
+
switch self {
|
|
262
|
+
case .screenshot: .screenshot
|
|
263
|
+
case .performance: .performance
|
|
264
|
+
case .network: .network
|
|
265
|
+
case .logs: .logs
|
|
266
|
+
case .threadStacks: .threadStacks
|
|
267
|
+
case .healthCheck: .healthCheck
|
|
268
|
+
case .customContext: .customContext
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
private struct ApplicationPayload: Decodable {
|
|
274
|
+
let name: String?
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
private struct CustomContextPayload: Decodable {
|
|
278
|
+
let values: [String: String]?
|
|
279
|
+
let allowedKeys: [String]?
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
private struct WorkspacePolicyPayload: Decodable {
|
|
283
|
+
let urlString: String?
|
|
284
|
+
let timeoutMs: Int?
|
|
285
|
+
|
|
286
|
+
enum CodingKeys: String, CodingKey {
|
|
287
|
+
case urlString = "url"
|
|
288
|
+
case timeoutMs
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
func url() throws -> URL? {
|
|
292
|
+
guard let urlString else { return nil }
|
|
293
|
+
guard let url = URL(string: urlString) else {
|
|
294
|
+
throw BridgeConfigurationError.invalidURL("workspacePolicy.url")
|
|
295
|
+
}
|
|
296
|
+
return url
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
168
300
|
private struct UploadPayload: Decodable {
|
|
169
301
|
let ingestionUrl: String?
|
|
170
302
|
|
|
@@ -9,10 +9,14 @@ const unsupportedModule = {
|
|
|
9
9
|
start: () => {
|
|
10
10
|
throw new Error(unsupportedMessage);
|
|
11
11
|
},
|
|
12
|
+
setScreenContext: () => undefined,
|
|
13
|
+
canCollectLogs: () => false,
|
|
12
14
|
installReporter: () => Promise.resolve(false),
|
|
13
15
|
show: () => Promise.resolve(false),
|
|
14
16
|
addLog: () => undefined,
|
|
15
|
-
clearLogs: () => undefined
|
|
17
|
+
clearLogs: () => undefined,
|
|
18
|
+
recordJavaScriptCrash: () => undefined,
|
|
19
|
+
recoverJavaScriptCrashes: () => Promise.resolve(false)
|
|
16
20
|
};
|
|
17
21
|
export default unsupportedModule;
|
|
18
22
|
//# sourceMappingURL=NativeCrumbReactNative.web.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["unsupportedMessage","unsupportedModule","name","dispose","undefined","equals","toString","start","Error","installReporter","Promise","resolve","show","addLog","clearLogs"],"sourceRoot":"../../src","sources":["NativeCrumbReactNative.web.ts"],"mappings":";;AAEA,MAAMA,kBAAkB,GACtB,wFAAwF;AAE1F,MAAMC,iBAAmC,GAAG;EAC1CC,IAAI,EAAE,kBAAkB;EACxBC,OAAO,EAAEA,CAAA,KAAMC,SAAS;EACxBC,MAAM,EAAEA,CAAA,KAAM,KAAK;EACnBC,QAAQ,EAAEA,CAAA,KAAM,oDAAoD;EACpEC,KAAK,EAAEA,CAAA,KAAM;IACX,MAAM,IAAIC,KAAK,CAACR,kBAAkB,CAAC;EACrC,CAAC;EACDS,eAAe,EAAEA,CAAA,KAAMC,OAAO,CAACC,OAAO,CAAC,KAAK,CAAC;EAC7CC,IAAI,EAAEA,CAAA,KAAMF,OAAO,CAACC,OAAO,CAAC,KAAK,CAAC;EAClCE,MAAM,EAAEA,CAAA,
|
|
1
|
+
{"version":3,"names":["unsupportedMessage","unsupportedModule","name","dispose","undefined","equals","toString","start","Error","setScreenContext","canCollectLogs","installReporter","Promise","resolve","show","addLog","clearLogs","recordJavaScriptCrash","recoverJavaScriptCrashes"],"sourceRoot":"../../src","sources":["NativeCrumbReactNative.web.ts"],"mappings":";;AAEA,MAAMA,kBAAkB,GACtB,wFAAwF;AAE1F,MAAMC,iBAAmC,GAAG;EAC1CC,IAAI,EAAE,kBAAkB;EACxBC,OAAO,EAAEA,CAAA,KAAMC,SAAS;EACxBC,MAAM,EAAEA,CAAA,KAAM,KAAK;EACnBC,QAAQ,EAAEA,CAAA,KAAM,oDAAoD;EACpEC,KAAK,EAAEA,CAAA,KAAM;IACX,MAAM,IAAIC,KAAK,CAACR,kBAAkB,CAAC;EACrC,CAAC;EACDS,gBAAgB,EAAEA,CAAA,KAAML,SAAS;EACjCM,cAAc,EAAEA,CAAA,KAAM,KAAK;EAC3BC,eAAe,EAAEA,CAAA,KAAMC,OAAO,CAACC,OAAO,CAAC,KAAK,CAAC;EAC7CC,IAAI,EAAEA,CAAA,KAAMF,OAAO,CAACC,OAAO,CAAC,KAAK,CAAC;EAClCE,MAAM,EAAEA,CAAA,KAAMX,SAAS;EACvBY,SAAS,EAAEA,CAAA,KAAMZ,SAAS;EAC1Ba,qBAAqB,EAAEA,CAAA,KAAMb,SAAS;EACtCc,wBAAwB,EAAEA,CAAA,KAAMN,OAAO,CAACC,OAAO,CAAC,KAAK;AACvD,CAAC;AAED,eAAeZ,iBAAiB","ignoreList":[]}
|
package/lib/module/index.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import NativeCrumbReactNative from './NativeCrumbReactNative';
|
|
4
|
+
import { currentScreenJson, setScreen, trackReactNavigation, useExpoRouterScreen } from "./screen-context.js";
|
|
5
|
+
export { setScreen, trackReactNavigation, useExpoRouterScreen };
|
|
6
|
+
import { configureJavaScriptCrashCapture, recoverJavaScriptCrashes } from "./javascript-crash-capture.js";
|
|
4
7
|
import { clearLogs, configureLogBuffer, disableConsoleCapture, enableConsoleCapture, markNativeStarted, writeLog } from "./log-buffer.js";
|
|
5
8
|
export async function start(configuration) {
|
|
6
9
|
validateConfiguration(configuration);
|
|
@@ -13,12 +16,16 @@ export async function start(configuration) {
|
|
|
13
16
|
} else {
|
|
14
17
|
disableConsoleCapture();
|
|
15
18
|
}
|
|
19
|
+
configureJavaScriptCrashCapture(configuration.diagnostics?.javascriptCrashCapture, configuration);
|
|
20
|
+
if (configuration.diagnostics?.javascriptCrashCapture?.enabled) {
|
|
21
|
+
await recoverJavaScriptCrashes();
|
|
22
|
+
}
|
|
16
23
|
}
|
|
17
24
|
export function installReporter() {
|
|
18
25
|
return NativeCrumbReactNative.installReporter();
|
|
19
26
|
}
|
|
20
27
|
export function show() {
|
|
21
|
-
return NativeCrumbReactNative.show();
|
|
28
|
+
return NativeCrumbReactNative.show(currentScreenJson());
|
|
22
29
|
}
|
|
23
30
|
export function log(level, message, metadata) {
|
|
24
31
|
if (!message.trim()) {
|
|
@@ -40,6 +47,86 @@ function validateConfiguration(configuration) {
|
|
|
40
47
|
assertPositiveInteger(configuration.diagnostics?.logs?.lookbackMs, 'diagnostics.logs.lookbackMs');
|
|
41
48
|
assertPositiveInteger(configuration.diagnostics?.logs?.maximumEntries, 'diagnostics.logs.maximumEntries');
|
|
42
49
|
assertPositiveInteger(configuration.diagnostics?.logs?.maximumBytes, 'diagnostics.logs.maximumBytes');
|
|
50
|
+
if (configuration.diagnostics?.renderingEnabled !== undefined && typeof configuration.diagnostics.renderingEnabled !== 'boolean') {
|
|
51
|
+
throw new TypeError('Crumb diagnostics.renderingEnabled must be a boolean.');
|
|
52
|
+
}
|
|
53
|
+
assertJavaScriptCrashCapture(configuration.diagnostics?.javascriptCrashCapture);
|
|
54
|
+
if (configuration.reporter?.theme !== undefined && !['system', 'light', 'dark'].includes(configuration.reporter.theme)) {
|
|
55
|
+
throw new TypeError('Crumb reporter.theme is unsupported.');
|
|
56
|
+
}
|
|
57
|
+
assertReporterFields(configuration.reporter?.visibleFields);
|
|
58
|
+
assertEvidence(configuration.evidence);
|
|
59
|
+
assertApplicationMetadata(configuration.application?.name);
|
|
60
|
+
assertCustomContext(configuration.customContext);
|
|
61
|
+
assertWorkspacePolicy(configuration.workspacePolicy);
|
|
62
|
+
}
|
|
63
|
+
function assertJavaScriptCrashCapture(value) {
|
|
64
|
+
if (value === undefined) return;
|
|
65
|
+
assertPositiveInteger(value.maximumBreadcrumbs, 'diagnostics.javascriptCrashCapture.maximumBreadcrumbs');
|
|
66
|
+
assertPositiveInteger(value.maximumBreadcrumbBytes, 'diagnostics.javascriptCrashCapture.maximumBreadcrumbBytes');
|
|
67
|
+
if (value.maximumBreadcrumbs !== undefined && value.maximumBreadcrumbs > 50) {
|
|
68
|
+
throw new TypeError('Crumb diagnostics.javascriptCrashCapture.maximumBreadcrumbs must be at most 50.');
|
|
69
|
+
}
|
|
70
|
+
if (value.maximumBreadcrumbBytes !== undefined && value.maximumBreadcrumbBytes > 65_536) {
|
|
71
|
+
throw new TypeError('Crumb diagnostics.javascriptCrashCapture.maximumBreadcrumbBytes must be at most 65536.');
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
function assertReporterFields(value) {
|
|
75
|
+
if (value === undefined) return;
|
|
76
|
+
if (new Set(value).size !== value.length || value.some(field => !['category', 'description'].includes(field)) || !value.includes('description')) {
|
|
77
|
+
throw new TypeError('Crumb reporter.visibleFields must contain unique supported fields including description.');
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
function assertEvidence(value) {
|
|
81
|
+
if (value === undefined) return;
|
|
82
|
+
const supported = ['screenshot', 'performance', 'network', 'logs', 'thread_stacks', 'health_check', 'custom_context'];
|
|
83
|
+
if (new Set(value).size !== value.length || value.some(item => !supported.includes(item))) {
|
|
84
|
+
throw new TypeError('Crumb evidence must contain unique supported categories.');
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
function assertApplicationMetadata(value) {
|
|
88
|
+
if (value === undefined) return;
|
|
89
|
+
if (typeof value !== 'string' || !value.trim() || value.length > 256 || hasControlCharacters(value)) {
|
|
90
|
+
throw new TypeError('Crumb application.name must be printable and at most 256 characters.');
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
function assertCustomContext(value) {
|
|
94
|
+
if (value === undefined) return;
|
|
95
|
+
const allowedKeys = value.allowedKeys ?? [];
|
|
96
|
+
const values = value.values ?? {};
|
|
97
|
+
if (!Array.isArray(allowedKeys) || new Set(allowedKeys).size !== allowedKeys.length || allowedKeys.length > 16 || allowedKeys.some(key => !isValidContextKey(key))) {
|
|
98
|
+
throw new TypeError('Crumb customContext.allowedKeys contains an invalid key.');
|
|
99
|
+
}
|
|
100
|
+
if (values === null || typeof values !== 'object' || Array.isArray(values)) {
|
|
101
|
+
throw new TypeError('Crumb customContext.values must be a string map.');
|
|
102
|
+
}
|
|
103
|
+
const entries = Object.entries(values);
|
|
104
|
+
if (entries.length > 16 || entries.some(([key, item]) => !isValidContextKey(key) || typeof item !== 'string')) {
|
|
105
|
+
throw new TypeError('Crumb customContext.values must contain bounded string values.');
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
function assertWorkspacePolicy(value) {
|
|
109
|
+
if (value === undefined) return;
|
|
110
|
+
assertPositiveInteger(value.timeoutMs, 'workspacePolicy.timeoutMs');
|
|
111
|
+
if (value.timeoutMs !== undefined && (value.timeoutMs < 250 || value.timeoutMs > 5000)) {
|
|
112
|
+
throw new TypeError('Crumb workspacePolicy.timeoutMs must be between 250 and 5000.');
|
|
113
|
+
}
|
|
114
|
+
if (value.url === undefined) return;
|
|
115
|
+
let url;
|
|
116
|
+
try {
|
|
117
|
+
url = new URL(value.url);
|
|
118
|
+
} catch {
|
|
119
|
+
throw new TypeError('Crumb workspacePolicy.url must be a valid HTTP or HTTPS URL.');
|
|
120
|
+
}
|
|
121
|
+
if (!['http:', 'https:'].includes(url.protocol) || url.username || url.password || url.search || url.hash) {
|
|
122
|
+
throw new TypeError('Crumb workspacePolicy.url must be an HTTP or HTTPS URL without credentials or query values.');
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
function isValidContextKey(value) {
|
|
126
|
+
return typeof value === 'string' && value.length <= 64 && /^[A-Za-z][A-Za-z0-9_.-]*$/.test(value);
|
|
127
|
+
}
|
|
128
|
+
function hasControlCharacters(value) {
|
|
129
|
+
return [...value].some(character => character < ' ' || character === '\u007f');
|
|
43
130
|
}
|
|
44
131
|
function assertPositiveInteger(value, field) {
|
|
45
132
|
if (value === undefined) return;
|
|
@@ -48,6 +135,9 @@ function assertPositiveInteger(value, field) {
|
|
|
48
135
|
}
|
|
49
136
|
}
|
|
50
137
|
const Crumb = Object.freeze({
|
|
138
|
+
setScreen,
|
|
139
|
+
trackReactNavigation,
|
|
140
|
+
useExpoRouterScreen,
|
|
51
141
|
start,
|
|
52
142
|
installReporter,
|
|
53
143
|
show,
|
package/lib/module/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["NativeCrumbReactNative","clearLogs","configureLogBuffer","disableConsoleCapture","enableConsoleCapture","markNativeStarted","writeLog","start","configuration","validateConfiguration","logOptions","diagnostics","logs","JSON","stringify","captureConsole","installReporter","show","log","level","message","metadata","trim","TypeError","projectKey","environment","assertPositiveInteger","capture","maximumScreenshotDimension","maximumScreenshotBytes","timeoutMs","lookbackMs","maximumEntries","maximumBytes","value","field","
|
|
1
|
+
{"version":3,"names":["NativeCrumbReactNative","currentScreenJson","setScreen","trackReactNavigation","useExpoRouterScreen","configureJavaScriptCrashCapture","recoverJavaScriptCrashes","clearLogs","configureLogBuffer","disableConsoleCapture","enableConsoleCapture","markNativeStarted","writeLog","start","configuration","validateConfiguration","logOptions","diagnostics","logs","JSON","stringify","captureConsole","javascriptCrashCapture","enabled","installReporter","show","log","level","message","metadata","trim","TypeError","projectKey","environment","assertPositiveInteger","capture","maximumScreenshotDimension","maximumScreenshotBytes","timeoutMs","lookbackMs","maximumEntries","maximumBytes","renderingEnabled","undefined","assertJavaScriptCrashCapture","reporter","theme","includes","assertReporterFields","visibleFields","assertEvidence","evidence","assertApplicationMetadata","application","name","assertCustomContext","customContext","assertWorkspacePolicy","workspacePolicy","value","maximumBreadcrumbs","maximumBreadcrumbBytes","Set","size","length","some","field","supported","item","hasControlCharacters","allowedKeys","values","Array","isArray","key","isValidContextKey","entries","Object","url","URL","protocol","username","password","search","hash","test","character","Number","isSafeInteger","Crumb","freeze"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"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","ignoreList":[]}
|