@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
|
@@ -107,6 +107,15 @@ namespace margelo::nitro::crumbsdk_reactnative::bridge::swift {
|
|
|
107
107
|
return Result<void>::withError(error);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
+
// pragma MARK: Result<bool>
|
|
111
|
+
using Result_bool_ = Result<bool>;
|
|
112
|
+
inline Result_bool_ create_Result_bool_(bool value) noexcept {
|
|
113
|
+
return Result<bool>::withValue(std::move(value));
|
|
114
|
+
}
|
|
115
|
+
inline Result_bool_ create_Result_bool_(const std::exception_ptr& error) noexcept {
|
|
116
|
+
return Result<bool>::withError(error);
|
|
117
|
+
}
|
|
118
|
+
|
|
110
119
|
// pragma MARK: Result<std::shared_ptr<Promise<bool>>>
|
|
111
120
|
using Result_std__shared_ptr_Promise_bool___ = Result<std::shared_ptr<Promise<bool>>>;
|
|
112
121
|
inline Result_std__shared_ptr_Promise_bool___ create_Result_std__shared_ptr_Promise_bool___(const std::shared_ptr<Promise<bool>>& value) noexcept {
|
|
@@ -73,6 +73,20 @@ namespace margelo::nitro::crumbsdk_reactnative {
|
|
|
73
73
|
std::rethrow_exception(__result.error());
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
|
+
inline void setScreenContext(const std::string& screenJson) override {
|
|
77
|
+
auto __result = _swiftPart.setScreenContext(screenJson);
|
|
78
|
+
if (__result.hasError()) [[unlikely]] {
|
|
79
|
+
std::rethrow_exception(__result.error());
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
inline bool canCollectLogs() override {
|
|
83
|
+
auto __result = _swiftPart.canCollectLogs();
|
|
84
|
+
if (__result.hasError()) [[unlikely]] {
|
|
85
|
+
std::rethrow_exception(__result.error());
|
|
86
|
+
}
|
|
87
|
+
auto __value = std::move(__result.value());
|
|
88
|
+
return __value;
|
|
89
|
+
}
|
|
76
90
|
inline std::shared_ptr<Promise<bool>> installReporter() override {
|
|
77
91
|
auto __result = _swiftPart.installReporter();
|
|
78
92
|
if (__result.hasError()) [[unlikely]] {
|
|
@@ -81,8 +95,8 @@ namespace margelo::nitro::crumbsdk_reactnative {
|
|
|
81
95
|
auto __value = std::move(__result.value());
|
|
82
96
|
return __value;
|
|
83
97
|
}
|
|
84
|
-
inline std::shared_ptr<Promise<bool>> show() override {
|
|
85
|
-
auto __result = _swiftPart.show();
|
|
98
|
+
inline std::shared_ptr<Promise<bool>> show(const std::string& screenJson) override {
|
|
99
|
+
auto __result = _swiftPart.show(screenJson);
|
|
86
100
|
if (__result.hasError()) [[unlikely]] {
|
|
87
101
|
std::rethrow_exception(__result.error());
|
|
88
102
|
}
|
|
@@ -101,6 +115,20 @@ namespace margelo::nitro::crumbsdk_reactnative {
|
|
|
101
115
|
std::rethrow_exception(__result.error());
|
|
102
116
|
}
|
|
103
117
|
}
|
|
118
|
+
inline void recordJavaScriptCrash(const std::string& recordJson) override {
|
|
119
|
+
auto __result = _swiftPart.recordJavaScriptCrash(recordJson);
|
|
120
|
+
if (__result.hasError()) [[unlikely]] {
|
|
121
|
+
std::rethrow_exception(__result.error());
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
inline std::shared_ptr<Promise<bool>> recoverJavaScriptCrashes() override {
|
|
125
|
+
auto __result = _swiftPart.recoverJavaScriptCrashes();
|
|
126
|
+
if (__result.hasError()) [[unlikely]] {
|
|
127
|
+
std::rethrow_exception(__result.error());
|
|
128
|
+
}
|
|
129
|
+
auto __value = std::move(__result.value());
|
|
130
|
+
return __value;
|
|
131
|
+
}
|
|
104
132
|
|
|
105
133
|
private:
|
|
106
134
|
CrumbReactNative::HybridCrumbReactNativeSpec_cxx _swiftPart;
|
|
@@ -14,10 +14,14 @@ public protocol HybridCrumbReactNativeSpec_protocol: HybridObject {
|
|
|
14
14
|
|
|
15
15
|
// Methods
|
|
16
16
|
func start(configurationJson: String) throws -> Void
|
|
17
|
+
func setScreenContext(screenJson: String) throws -> Void
|
|
18
|
+
func canCollectLogs() throws -> Bool
|
|
17
19
|
func installReporter() throws -> Promise<Bool>
|
|
18
|
-
func show() throws -> Promise<Bool>
|
|
20
|
+
func show(screenJson: String) throws -> Promise<Bool>
|
|
19
21
|
func addLog(entryJson: String) throws -> Void
|
|
20
22
|
func clearLogs() throws -> Void
|
|
23
|
+
func recordJavaScriptCrash(recordJson: String) throws -> Void
|
|
24
|
+
func recoverJavaScriptCrashes() throws -> Promise<Bool>
|
|
21
25
|
}
|
|
22
26
|
|
|
23
27
|
public extension HybridCrumbReactNativeSpec_protocol {
|
|
@@ -135,6 +135,29 @@ open class HybridCrumbReactNativeSpec_cxx {
|
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
|
|
138
|
+
@inline(__always)
|
|
139
|
+
public final func setScreenContext(screenJson: std.string) -> bridge.Result_void_ {
|
|
140
|
+
do {
|
|
141
|
+
try self.__implementation.setScreenContext(screenJson: String(screenJson))
|
|
142
|
+
return bridge.create_Result_void_()
|
|
143
|
+
} catch (let __error) {
|
|
144
|
+
let __exceptionPtr = __error.toCpp()
|
|
145
|
+
return bridge.create_Result_void_(__exceptionPtr)
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
@inline(__always)
|
|
150
|
+
public final func canCollectLogs() -> bridge.Result_bool_ {
|
|
151
|
+
do {
|
|
152
|
+
let __result = try self.__implementation.canCollectLogs()
|
|
153
|
+
let __resultCpp = __result
|
|
154
|
+
return bridge.create_Result_bool_(__resultCpp)
|
|
155
|
+
} catch (let __error) {
|
|
156
|
+
let __exceptionPtr = __error.toCpp()
|
|
157
|
+
return bridge.create_Result_bool_(__exceptionPtr)
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
138
161
|
@inline(__always)
|
|
139
162
|
public final func installReporter() -> bridge.Result_std__shared_ptr_Promise_bool___ {
|
|
140
163
|
do {
|
|
@@ -155,9 +178,9 @@ open class HybridCrumbReactNativeSpec_cxx {
|
|
|
155
178
|
}
|
|
156
179
|
|
|
157
180
|
@inline(__always)
|
|
158
|
-
public final func show() -> bridge.Result_std__shared_ptr_Promise_bool___ {
|
|
181
|
+
public final func show(screenJson: std.string) -> bridge.Result_std__shared_ptr_Promise_bool___ {
|
|
159
182
|
do {
|
|
160
|
-
let __result = try self.__implementation.show()
|
|
183
|
+
let __result = try self.__implementation.show(screenJson: String(screenJson))
|
|
161
184
|
let __resultCpp = { () -> bridge.std__shared_ptr_Promise_bool__ in
|
|
162
185
|
let __promise = bridge.create_std__shared_ptr_Promise_bool__()
|
|
163
186
|
let __promiseHolder = bridge.wrap_std__shared_ptr_Promise_bool__(__promise)
|
|
@@ -194,4 +217,34 @@ open class HybridCrumbReactNativeSpec_cxx {
|
|
|
194
217
|
return bridge.create_Result_void_(__exceptionPtr)
|
|
195
218
|
}
|
|
196
219
|
}
|
|
220
|
+
|
|
221
|
+
@inline(__always)
|
|
222
|
+
public final func recordJavaScriptCrash(recordJson: std.string) -> bridge.Result_void_ {
|
|
223
|
+
do {
|
|
224
|
+
try self.__implementation.recordJavaScriptCrash(recordJson: String(recordJson))
|
|
225
|
+
return bridge.create_Result_void_()
|
|
226
|
+
} catch (let __error) {
|
|
227
|
+
let __exceptionPtr = __error.toCpp()
|
|
228
|
+
return bridge.create_Result_void_(__exceptionPtr)
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
@inline(__always)
|
|
233
|
+
public final func recoverJavaScriptCrashes() -> bridge.Result_std__shared_ptr_Promise_bool___ {
|
|
234
|
+
do {
|
|
235
|
+
let __result = try self.__implementation.recoverJavaScriptCrashes()
|
|
236
|
+
let __resultCpp = { () -> bridge.std__shared_ptr_Promise_bool__ in
|
|
237
|
+
let __promise = bridge.create_std__shared_ptr_Promise_bool__()
|
|
238
|
+
let __promiseHolder = bridge.wrap_std__shared_ptr_Promise_bool__(__promise)
|
|
239
|
+
__result
|
|
240
|
+
.then({ __result in __promiseHolder.resolve(__result) })
|
|
241
|
+
.catch({ __error in __promiseHolder.reject(__error.toCpp()) })
|
|
242
|
+
return __promise
|
|
243
|
+
}()
|
|
244
|
+
return bridge.create_Result_std__shared_ptr_Promise_bool___(__resultCpp)
|
|
245
|
+
} catch (let __error) {
|
|
246
|
+
let __exceptionPtr = __error.toCpp()
|
|
247
|
+
return bridge.create_Result_std__shared_ptr_Promise_bool___(__exceptionPtr)
|
|
248
|
+
}
|
|
249
|
+
}
|
|
197
250
|
}
|
|
@@ -15,10 +15,14 @@ namespace margelo::nitro::crumbsdk_reactnative {
|
|
|
15
15
|
// load custom methods/properties
|
|
16
16
|
registerHybrids(this, [](Prototype& prototype) {
|
|
17
17
|
prototype.registerHybridMethod("start", &HybridCrumbReactNativeSpec::start);
|
|
18
|
+
prototype.registerHybridMethod("setScreenContext", &HybridCrumbReactNativeSpec::setScreenContext);
|
|
19
|
+
prototype.registerHybridMethod("canCollectLogs", &HybridCrumbReactNativeSpec::canCollectLogs);
|
|
18
20
|
prototype.registerHybridMethod("installReporter", &HybridCrumbReactNativeSpec::installReporter);
|
|
19
21
|
prototype.registerHybridMethod("show", &HybridCrumbReactNativeSpec::show);
|
|
20
22
|
prototype.registerHybridMethod("addLog", &HybridCrumbReactNativeSpec::addLog);
|
|
21
23
|
prototype.registerHybridMethod("clearLogs", &HybridCrumbReactNativeSpec::clearLogs);
|
|
24
|
+
prototype.registerHybridMethod("recordJavaScriptCrash", &HybridCrumbReactNativeSpec::recordJavaScriptCrash);
|
|
25
|
+
prototype.registerHybridMethod("recoverJavaScriptCrashes", &HybridCrumbReactNativeSpec::recoverJavaScriptCrashes);
|
|
22
26
|
});
|
|
23
27
|
}
|
|
24
28
|
|
|
@@ -50,10 +50,14 @@ namespace margelo::nitro::crumbsdk_reactnative {
|
|
|
50
50
|
public:
|
|
51
51
|
// Methods
|
|
52
52
|
virtual void start(const std::string& configurationJson) = 0;
|
|
53
|
+
virtual void setScreenContext(const std::string& screenJson) = 0;
|
|
54
|
+
virtual bool canCollectLogs() = 0;
|
|
53
55
|
virtual std::shared_ptr<Promise<bool>> installReporter() = 0;
|
|
54
|
-
virtual std::shared_ptr<Promise<bool>> show() = 0;
|
|
56
|
+
virtual std::shared_ptr<Promise<bool>> show(const std::string& screenJson) = 0;
|
|
55
57
|
virtual void addLog(const std::string& entryJson) = 0;
|
|
56
58
|
virtual void clearLogs() = 0;
|
|
59
|
+
virtual void recordJavaScriptCrash(const std::string& recordJson) = 0;
|
|
60
|
+
virtual std::shared_ptr<Promise<bool>> recoverJavaScriptCrashes() = 0;
|
|
57
61
|
|
|
58
62
|
protected:
|
|
59
63
|
// Hybrid Setup
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crumbsdk/react-native",
|
|
3
|
-
"version": "0.0.1-rc.
|
|
3
|
+
"version": "0.0.1-rc.4",
|
|
4
4
|
"description": "React Native adapter for the native Crumb issue-reporting SDK",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"types": "./lib/typescript/src/index.d.ts",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"types": "./lib/typescript/src/index.d.ts",
|
|
11
11
|
"default": "./lib/module/index.js"
|
|
12
12
|
},
|
|
13
|
-
"./package.json": "./package.json"
|
|
13
|
+
"./package.json": "./package.json",
|
|
14
|
+
"./app.plugin.js": "./app.plugin.js"
|
|
14
15
|
},
|
|
15
16
|
"files": [
|
|
16
17
|
"src",
|
|
@@ -26,7 +27,11 @@
|
|
|
26
27
|
"!ios/build",
|
|
27
28
|
"!android/build",
|
|
28
29
|
"!android/.cxx",
|
|
29
|
-
"!**/__tests__"
|
|
30
|
+
"!**/__tests__",
|
|
31
|
+
"native",
|
|
32
|
+
"scripts/ios.rb",
|
|
33
|
+
"app.plugin.js",
|
|
34
|
+
"plugin"
|
|
30
35
|
],
|
|
31
36
|
"scripts": {
|
|
32
37
|
"example": "yarn workspace @crumbsdk/react-native-example",
|
|
@@ -37,7 +42,12 @@
|
|
|
37
42
|
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
38
43
|
"test": "jest --runInBand",
|
|
39
44
|
"quality": "yarn lint && yarn typecheck && yarn test && yarn prepare",
|
|
40
|
-
"pack:check": "
|
|
45
|
+
"pack:check": "node scripts/verify-pack.mjs",
|
|
46
|
+
"prepare:ios": "node scripts/prepare-ios.mjs",
|
|
47
|
+
"prepack": "yarn prepare:ios",
|
|
48
|
+
"test:packaging": "node --test test/packaging/*.test.cjs",
|
|
49
|
+
"pack:check:ios": "node scripts/verify-pack.mjs --ios",
|
|
50
|
+
"pack:check:expo": "node scripts/verify-expo-consumer.mjs"
|
|
41
51
|
},
|
|
42
52
|
"keywords": [
|
|
43
53
|
"react-native",
|
|
@@ -62,7 +72,7 @@
|
|
|
62
72
|
"access": "public",
|
|
63
73
|
"registry": "https://registry.npmjs.org/"
|
|
64
74
|
},
|
|
65
|
-
"crumbNativeVersion": "0.0.1-rc.
|
|
75
|
+
"crumbNativeVersion": "0.0.1-rc.4",
|
|
66
76
|
"devDependencies": {
|
|
67
77
|
"@babel/core": "7.29.7",
|
|
68
78
|
"@eslint/compat": "2.1.0",
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const marker = '# crumb-bundled-ios';
|
|
2
|
+
const block = `${marker}
|
|
3
|
+
require File.join(File.dirname(\`node --print "require.resolve('@crumbsdk/react-native/package.json')"\`.strip), 'scripts', 'ios')
|
|
4
|
+
crumb_native_pods!`;
|
|
5
|
+
|
|
6
|
+
function configurePodfile(contents) {
|
|
7
|
+
if (contents.includes(marker)) return contents;
|
|
8
|
+
if (/pod\s+['"](?:CrumbSDK(?:Core|UI)?|PLCrashReporter)['"]/.test(contents)) {
|
|
9
|
+
throw new Error(
|
|
10
|
+
'Remove manual Crumb/PLCrashReporter pod entries before enabling the Crumb Expo plugin. It registers the bundled dependencies.'
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
const target = /^(\s*)use_expo_modules!\s*$/m;
|
|
14
|
+
if (!target.test(contents)) {
|
|
15
|
+
throw new Error(
|
|
16
|
+
'Crumb could not find use_expo_modules! in the Expo Podfile. Add crumb_native_pods! inside the app target using the bare React Native setup guide.'
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
return contents.replace(target, (match) => `${match}\n ${block}\n`);
|
|
20
|
+
}
|
|
21
|
+
module.exports = { configurePodfile };
|
package/scripts/ios.rb
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
|
|
3
|
+
# Call once inside each application target, before use_react_native!.
|
|
4
|
+
def crumb_native_pods!
|
|
5
|
+
package_root = File.expand_path('..', __dir__)
|
|
6
|
+
native_root = File.join(package_root, 'native', 'ios')
|
|
7
|
+
package = JSON.parse(File.read(File.join(package_root, 'package.json')))
|
|
8
|
+
required = [
|
|
9
|
+
'VERSION', 'CrumbSDKCore.podspec', 'CrumbSDKUI.podspec',
|
|
10
|
+
'packages/ios/Sources/CrumbCore/CrumbConfiguration.swift',
|
|
11
|
+
'PLCrashReporter/PLCrashReporter.podspec',
|
|
12
|
+
'PLCrashReporter/CrashReporter.xcframework/Info.plist'
|
|
13
|
+
]
|
|
14
|
+
unless required.all? { |file| File.file?(File.join(native_root, file)) }
|
|
15
|
+
raise 'Crumb bundled iOS files are missing. Reinstall @crumbsdk/react-native; SDK contributors must run yarn prepare:ios before building.'
|
|
16
|
+
end
|
|
17
|
+
unless File.read(File.join(native_root, 'VERSION')).strip == package.fetch('crumbNativeVersion')
|
|
18
|
+
raise 'Crumb bundled iOS version does not match this npm package. Reinstall @crumbsdk/react-native.'
|
|
19
|
+
end
|
|
20
|
+
pod 'CrumbSDKCore', :path => native_root
|
|
21
|
+
pod 'CrumbSDKUI', :path => native_root
|
|
22
|
+
pod 'PLCrashReporter', :path => File.join(native_root, 'PLCrashReporter')
|
|
23
|
+
end
|
|
@@ -5,8 +5,12 @@ export interface CrumbReactNative extends HybridObject<{
|
|
|
5
5
|
android: 'kotlin';
|
|
6
6
|
}> {
|
|
7
7
|
start(configurationJson: string): void;
|
|
8
|
+
setScreenContext(screenJson: string): void;
|
|
9
|
+
canCollectLogs(): boolean;
|
|
8
10
|
installReporter(): Promise<boolean>;
|
|
9
|
-
show(): Promise<boolean>;
|
|
11
|
+
show(screenJson: string): Promise<boolean>;
|
|
10
12
|
addLog(entryJson: string): void;
|
|
11
13
|
clearLogs(): void;
|
|
14
|
+
recordJavaScriptCrash(recordJson: string): void;
|
|
15
|
+
recoverJavaScriptCrashes(): Promise<boolean>;
|
|
12
16
|
}
|
|
@@ -11,10 +11,14 @@ const unsupportedModule: CrumbReactNative = {
|
|
|
11
11
|
start: () => {
|
|
12
12
|
throw new Error(unsupportedMessage);
|
|
13
13
|
},
|
|
14
|
+
setScreenContext: () => undefined,
|
|
15
|
+
canCollectLogs: () => false,
|
|
14
16
|
installReporter: () => Promise.resolve(false),
|
|
15
17
|
show: () => Promise.resolve(false),
|
|
16
18
|
addLog: () => undefined,
|
|
17
19
|
clearLogs: () => undefined,
|
|
20
|
+
recordJavaScriptCrash: () => undefined,
|
|
21
|
+
recoverJavaScriptCrashes: () => Promise.resolve(false),
|
|
18
22
|
};
|
|
19
23
|
|
|
20
24
|
export default unsupportedModule;
|
package/src/index.ts
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
import NativeCrumbReactNative from './NativeCrumbReactNative';
|
|
2
|
+
import {
|
|
3
|
+
currentScreenJson,
|
|
4
|
+
setScreen,
|
|
5
|
+
trackReactNavigation,
|
|
6
|
+
useExpoRouterScreen,
|
|
7
|
+
} from './screen-context';
|
|
8
|
+
export { setScreen, trackReactNavigation, useExpoRouterScreen };
|
|
9
|
+
export type { CrumbScreenOptions, CrumbNavigationRef } from './screen-context';
|
|
10
|
+
import {
|
|
11
|
+
configureJavaScriptCrashCapture,
|
|
12
|
+
recoverJavaScriptCrashes,
|
|
13
|
+
} from './javascript-crash-capture';
|
|
2
14
|
import {
|
|
3
15
|
clearLogs,
|
|
4
16
|
configureLogBuffer,
|
|
@@ -9,21 +21,30 @@ import {
|
|
|
9
21
|
} from './log-buffer';
|
|
10
22
|
import type {
|
|
11
23
|
CrumbConfiguration,
|
|
24
|
+
CrumbJavaScriptCrashCaptureOptions,
|
|
12
25
|
CrumbLogLevel,
|
|
13
26
|
CrumbLogMetadata,
|
|
14
27
|
} from './types';
|
|
15
28
|
|
|
16
29
|
export type {
|
|
30
|
+
CrumbApplicationMetadata,
|
|
17
31
|
CrumbCaptureOptions,
|
|
18
32
|
CrumbConfiguration,
|
|
33
|
+
CrumbCustomContextOptions,
|
|
19
34
|
CrumbDiagnosticsOptions,
|
|
35
|
+
CrumbJavaScriptCrashCaptureOptions,
|
|
36
|
+
CrumbEvidenceCategory,
|
|
20
37
|
CrumbInvocation,
|
|
21
38
|
CrumbLogLevel,
|
|
22
39
|
CrumbLogMetadata,
|
|
23
40
|
CrumbLogOptions,
|
|
24
41
|
CrumbPrivacyOptions,
|
|
42
|
+
CrumbReporterField,
|
|
43
|
+
CrumbReporterOptions,
|
|
25
44
|
CrumbRelease,
|
|
45
|
+
CrumbTheme,
|
|
26
46
|
CrumbUploadOptions,
|
|
47
|
+
CrumbWorkspacePolicyOptions,
|
|
27
48
|
} from './types';
|
|
28
49
|
|
|
29
50
|
export async function start(configuration: CrumbConfiguration): Promise<void> {
|
|
@@ -38,6 +59,14 @@ export async function start(configuration: CrumbConfiguration): Promise<void> {
|
|
|
38
59
|
} else {
|
|
39
60
|
disableConsoleCapture();
|
|
40
61
|
}
|
|
62
|
+
|
|
63
|
+
configureJavaScriptCrashCapture(
|
|
64
|
+
configuration.diagnostics?.javascriptCrashCapture,
|
|
65
|
+
configuration
|
|
66
|
+
);
|
|
67
|
+
if (configuration.diagnostics?.javascriptCrashCapture?.enabled) {
|
|
68
|
+
await recoverJavaScriptCrashes();
|
|
69
|
+
}
|
|
41
70
|
}
|
|
42
71
|
|
|
43
72
|
export function installReporter(): Promise<boolean> {
|
|
@@ -45,7 +74,7 @@ export function installReporter(): Promise<boolean> {
|
|
|
45
74
|
}
|
|
46
75
|
|
|
47
76
|
export function show(): Promise<boolean> {
|
|
48
|
-
return NativeCrumbReactNative.show();
|
|
77
|
+
return NativeCrumbReactNative.show(currentScreenJson());
|
|
49
78
|
}
|
|
50
79
|
|
|
51
80
|
export function log(
|
|
@@ -93,6 +122,191 @@ function validateConfiguration(configuration: CrumbConfiguration): void {
|
|
|
93
122
|
configuration.diagnostics?.logs?.maximumBytes,
|
|
94
123
|
'diagnostics.logs.maximumBytes'
|
|
95
124
|
);
|
|
125
|
+
if (
|
|
126
|
+
configuration.diagnostics?.renderingEnabled !== undefined &&
|
|
127
|
+
typeof configuration.diagnostics.renderingEnabled !== 'boolean'
|
|
128
|
+
) {
|
|
129
|
+
throw new TypeError(
|
|
130
|
+
'Crumb diagnostics.renderingEnabled must be a boolean.'
|
|
131
|
+
);
|
|
132
|
+
}
|
|
133
|
+
assertJavaScriptCrashCapture(
|
|
134
|
+
configuration.diagnostics?.javascriptCrashCapture
|
|
135
|
+
);
|
|
136
|
+
|
|
137
|
+
if (
|
|
138
|
+
configuration.reporter?.theme !== undefined &&
|
|
139
|
+
!['system', 'light', 'dark'].includes(configuration.reporter.theme)
|
|
140
|
+
) {
|
|
141
|
+
throw new TypeError('Crumb reporter.theme is unsupported.');
|
|
142
|
+
}
|
|
143
|
+
assertReporterFields(configuration.reporter?.visibleFields);
|
|
144
|
+
assertEvidence(configuration.evidence);
|
|
145
|
+
assertApplicationMetadata(configuration.application?.name);
|
|
146
|
+
assertCustomContext(configuration.customContext);
|
|
147
|
+
assertWorkspacePolicy(configuration.workspacePolicy);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
function assertJavaScriptCrashCapture(
|
|
151
|
+
value: CrumbJavaScriptCrashCaptureOptions | undefined
|
|
152
|
+
): void {
|
|
153
|
+
if (value === undefined) return;
|
|
154
|
+
assertPositiveInteger(
|
|
155
|
+
value.maximumBreadcrumbs,
|
|
156
|
+
'diagnostics.javascriptCrashCapture.maximumBreadcrumbs'
|
|
157
|
+
);
|
|
158
|
+
assertPositiveInteger(
|
|
159
|
+
value.maximumBreadcrumbBytes,
|
|
160
|
+
'diagnostics.javascriptCrashCapture.maximumBreadcrumbBytes'
|
|
161
|
+
);
|
|
162
|
+
if (value.maximumBreadcrumbs !== undefined && value.maximumBreadcrumbs > 50) {
|
|
163
|
+
throw new TypeError(
|
|
164
|
+
'Crumb diagnostics.javascriptCrashCapture.maximumBreadcrumbs must be at most 50.'
|
|
165
|
+
);
|
|
166
|
+
}
|
|
167
|
+
if (
|
|
168
|
+
value.maximumBreadcrumbBytes !== undefined &&
|
|
169
|
+
value.maximumBreadcrumbBytes > 65_536
|
|
170
|
+
) {
|
|
171
|
+
throw new TypeError(
|
|
172
|
+
'Crumb diagnostics.javascriptCrashCapture.maximumBreadcrumbBytes must be at most 65536.'
|
|
173
|
+
);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
function assertReporterFields(value: readonly string[] | undefined): void {
|
|
178
|
+
if (value === undefined) return;
|
|
179
|
+
if (
|
|
180
|
+
new Set(value).size !== value.length ||
|
|
181
|
+
value.some((field) => !['category', 'description'].includes(field)) ||
|
|
182
|
+
!value.includes('description')
|
|
183
|
+
) {
|
|
184
|
+
throw new TypeError(
|
|
185
|
+
'Crumb reporter.visibleFields must contain unique supported fields including description.'
|
|
186
|
+
);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
function assertEvidence(value: readonly string[] | undefined): void {
|
|
191
|
+
if (value === undefined) return;
|
|
192
|
+
const supported = [
|
|
193
|
+
'screenshot',
|
|
194
|
+
'performance',
|
|
195
|
+
'network',
|
|
196
|
+
'logs',
|
|
197
|
+
'thread_stacks',
|
|
198
|
+
'health_check',
|
|
199
|
+
'custom_context',
|
|
200
|
+
];
|
|
201
|
+
if (
|
|
202
|
+
new Set(value).size !== value.length ||
|
|
203
|
+
value.some((item) => !supported.includes(item))
|
|
204
|
+
) {
|
|
205
|
+
throw new TypeError(
|
|
206
|
+
'Crumb evidence must contain unique supported categories.'
|
|
207
|
+
);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
function assertApplicationMetadata(value: string | undefined): void {
|
|
212
|
+
if (value === undefined) return;
|
|
213
|
+
if (
|
|
214
|
+
typeof value !== 'string' ||
|
|
215
|
+
!value.trim() ||
|
|
216
|
+
value.length > 256 ||
|
|
217
|
+
hasControlCharacters(value)
|
|
218
|
+
) {
|
|
219
|
+
throw new TypeError(
|
|
220
|
+
'Crumb application.name must be printable and at most 256 characters.'
|
|
221
|
+
);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
function assertCustomContext(value: CrumbConfiguration['customContext']): void {
|
|
226
|
+
if (value === undefined) return;
|
|
227
|
+
const allowedKeys = value.allowedKeys ?? [];
|
|
228
|
+
const values = value.values ?? {};
|
|
229
|
+
if (
|
|
230
|
+
!Array.isArray(allowedKeys) ||
|
|
231
|
+
new Set(allowedKeys).size !== allowedKeys.length ||
|
|
232
|
+
allowedKeys.length > 16 ||
|
|
233
|
+
allowedKeys.some((key) => !isValidContextKey(key))
|
|
234
|
+
) {
|
|
235
|
+
throw new TypeError(
|
|
236
|
+
'Crumb customContext.allowedKeys contains an invalid key.'
|
|
237
|
+
);
|
|
238
|
+
}
|
|
239
|
+
if (values === null || typeof values !== 'object' || Array.isArray(values)) {
|
|
240
|
+
throw new TypeError('Crumb customContext.values must be a string map.');
|
|
241
|
+
}
|
|
242
|
+
const entries = Object.entries(values);
|
|
243
|
+
if (
|
|
244
|
+
entries.length > 16 ||
|
|
245
|
+
entries.some(
|
|
246
|
+
([key, item]) => !isValidContextKey(key) || typeof item !== 'string'
|
|
247
|
+
)
|
|
248
|
+
) {
|
|
249
|
+
throw new TypeError(
|
|
250
|
+
'Crumb customContext.values must contain bounded string values.'
|
|
251
|
+
);
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
function assertWorkspacePolicy(
|
|
256
|
+
value: CrumbConfiguration['workspacePolicy']
|
|
257
|
+
): void {
|
|
258
|
+
if (value === undefined) return;
|
|
259
|
+
assertPositiveInteger(value.timeoutMs, 'workspacePolicy.timeoutMs');
|
|
260
|
+
if (
|
|
261
|
+
value.timeoutMs !== undefined &&
|
|
262
|
+
(value.timeoutMs < 250 || value.timeoutMs > 5000)
|
|
263
|
+
) {
|
|
264
|
+
throw new TypeError(
|
|
265
|
+
'Crumb workspacePolicy.timeoutMs must be between 250 and 5000.'
|
|
266
|
+
);
|
|
267
|
+
}
|
|
268
|
+
if (value.url === undefined) return;
|
|
269
|
+
let url: WorkspacePolicyUrl;
|
|
270
|
+
try {
|
|
271
|
+
url = new URL(value.url) as unknown as WorkspacePolicyUrl;
|
|
272
|
+
} catch {
|
|
273
|
+
throw new TypeError(
|
|
274
|
+
'Crumb workspacePolicy.url must be a valid HTTP or HTTPS URL.'
|
|
275
|
+
);
|
|
276
|
+
}
|
|
277
|
+
if (
|
|
278
|
+
!['http:', 'https:'].includes(url.protocol) ||
|
|
279
|
+
url.username ||
|
|
280
|
+
url.password ||
|
|
281
|
+
url.search ||
|
|
282
|
+
url.hash
|
|
283
|
+
) {
|
|
284
|
+
throw new TypeError(
|
|
285
|
+
'Crumb workspacePolicy.url must be an HTTP or HTTPS URL without credentials or query values.'
|
|
286
|
+
);
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
interface WorkspacePolicyUrl {
|
|
291
|
+
protocol: string;
|
|
292
|
+
username: string;
|
|
293
|
+
password: string;
|
|
294
|
+
search: string;
|
|
295
|
+
hash: string;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
function isValidContextKey(value: unknown): value is string {
|
|
299
|
+
return (
|
|
300
|
+
typeof value === 'string' &&
|
|
301
|
+
value.length <= 64 &&
|
|
302
|
+
/^[A-Za-z][A-Za-z0-9_.-]*$/.test(value)
|
|
303
|
+
);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
function hasControlCharacters(value: string): boolean {
|
|
307
|
+
return [...value].some(
|
|
308
|
+
(character) => character < ' ' || character === '\u007f'
|
|
309
|
+
);
|
|
96
310
|
}
|
|
97
311
|
|
|
98
312
|
function assertPositiveInteger(value: number | undefined, field: string): void {
|
|
@@ -103,6 +317,9 @@ function assertPositiveInteger(value: number | undefined, field: string): void {
|
|
|
103
317
|
}
|
|
104
318
|
|
|
105
319
|
const Crumb = Object.freeze({
|
|
320
|
+
setScreen,
|
|
321
|
+
trackReactNavigation,
|
|
322
|
+
useExpoRouterScreen,
|
|
106
323
|
start,
|
|
107
324
|
installReporter,
|
|
108
325
|
show,
|