Giter Site home page Giter Site logo

instabug-sp's People

Contributors

ahmedsalah196 avatar heshammegid avatar instabug-ios-ci avatar kmohamed avatar yousefhamza avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

instabug-sp's Issues

[Core Data] [Warnings] Use of transformable properties with transformer names that are either unset, or set to NSKeyedUnarchiveFromDataTransformerName

Steps to Reproduce the Problem

Launch an app with Instabug integrated with the debugger attached.

Expected Behavior

No warnings or errors

Actual Behavior

Receiving warnings at app launch

- [error] fault: One or more models in this application are using transformable properties with transformer names that are either unset, or set to NSKeyedUnarchiveFromDataTransformerName. Please switch to using "NSSecureUnarchiveFromData" or a subclass of NSSecureUnarchiveFromDataTransformer instead. At some point, Core Data will default to using "NSSecureUnarchiveFromData" when nil is specified, and transformable properties containing classes that do not support NSSecureCoding will become unreadable.
- CoreData: fault: One or more models in this application are using transformable properties with transformer names that are either unset, or set to NSKeyedUnarchiveFromDataTransformerName. Please switch to using "NSSecureUnarchiveFromData" or a subclass of NSSecureUnarchiveFromDataTransformer instead. At some point, Core Data will default to using "NSSecureUnarchiveFromData" when nil is specified, and transformable properties containing classes that do not support NSSecureCoding will become unreadable.
- [error] CoreData: One or more models in this application are using transformable properties with transformer names that are either unset, or set to NSKeyedUnarchiveFromDataTransformerName. Please switch to using "NSSecureUnarchiveFromData" or a subclass of NSSecureUnarchiveFromDataTransformer instead. At some point, Core Data will default to using "NSSecureUnarchiveFromData" when nil is specified, and transformable properties containing classes that do not support NSSecureCoding will become unreadable.
- CoreData: warning: Property 'attributes' on Entity 'ExecutionTrace' is using nil or an insecure NSValueTransformer.  Please switch to using "NSSecureUnarchiveFromData" or a subclass of NSSecureUnarchiveFromDataTransformer instead.

Instabug integration code

    public func start() {
        Instabug.welcomeMessageMode = .disabled
        Instabug.start(withToken: Configuration.errorReportingToken,
                       invocationEvents: [.shake])
    }

SDK Version

11.9.1

iOS Version

iOS 16.2

Device Model

Simulator ( iPhone 14 Pro )

Checksum is wrong

Steps to Reproduce the Problem

Setup a project and include Instabug-SP via Swift package manager.

Expected Behavior

It loads the Instabug framework into the project

Actual Behavior

checksum of downloaded artifact of binary target 'Instabug' (72973ac4472099220a414068fd315c11c5698a926e79339ed526f68fa9810ef4) does not match checksum specified by the manifest (ccda67f47b40ab82c25f63af798a6665057fdc8e35a249114b9c7b4128011ca3)

Instabug integration code

Make sure to remove your app token.

SDK Version

11.5.0

XCode Version

14.1

test1

Steps to Reproduce the Problem

Expected Behavior

Actual Behavior

Instabug integration code

Make sure to remove your app token.

SDK Version

iOS Version

Device Model

[Optional] Project That Reproduces the Issue

"dyld: Library not loaded" error on XCode 13/SPM

Hello,

I am trying to port my codebase to XCode13. Running into this strange issue for Instabug framework when I try to run my app on a real device (works well on simulator):

dyld: Library not loaded: @rpath/Instabug.framework/Instabug
Referenced from: /private/var/containers/Bundle/Application//XXX.app/Frameworks/XXXModel.framework/XXXModel
Reason: image not found
dyld: launch, loading dependent libraries
DYLD_LIBRARY_PATH=/usr/lib/system/introspection
DYLD_INSERT_LIBRARIES=/Developer/usr/lib/libBacktraceRecording.dylib:/Developer/usr/lib/libMainThreadChecker.dylib:/Developer/Library/PrivateFrameworks/DTDDISupport.framework/libViewDebuggerSupport.dylib

I am using SPM for dependency management - https://github.com/Instabug/Instabug-SP version 10.10.1

I also tried adding Instabug.xcframework manually to my project, however ran into the same issue
Update: manually adding xcframework works.

Appreciate any help.

Steps to Reproduce the Problem

Add Instabug framework using SPM

Expected Behavior

similar behavior on simulator & real device

Actual Behavior

app fails to run on real device

Instabug integration code

N/a - app has been successfully integrated with Instabug for many years now.

SDK Version

10.10.1

iOS Version

14/15

Device Model

SE

[Optional] Project That Reproduces the Issue

Intermittently missing all-product-headers.yaml

Hey! I intermittently run into this issue, and often cleaning/clearing derived data/resetting the package cache doesn't resolve it. It might have something to do with a newer version of the SDK?

I get the following error whenever I try to use the debugger

(lldb) po anything
error: virtual filesystem overlay file '/Users/distiller/Library/Developer/Xcode/DerivedData/Instabug-cvgnxykmqaptlvcvhwtspqfbequo/Build/Intermediates.noindex/ArchiveIntermediates/InstabugDynamic/IntermediateBuildFilesPath/Instabug.build/Release-iphoneos/InstabugDynamic.build/all-product-headers.yaml' not found
error: virtual filesystem overlay file '/Users/distiller/Library/Developer/Xcode/DerivedData/Instabug-cvgnxykmqaptlvcvhwtspqfbequo/Build/Intermediates.noindex/ArchiveIntermediates/InstabugDynamic/IntermediateBuildFilesPath/Instabug.build/Release-iphoneos/InstabugDynamic.build/all-product-headers.yaml' not found

error: couldn't IRGen expression. Please check the above error messages for possible root causes.

Is this something that's being tracked? is there a fix/workaround?

Upload DSYMs script not working via SwiftPM

Steps to Reproduce the Problem

  1. Integrate Instabug via SwiftPM as described in this README (or the documentation)
  2. Add the following build script (from the documentation):
#- -- SCRIPT BEGIN - --
# SKIP_SIMULATOR_BUILDS=1
  SCRIPT_SRC=$(find "$PROJECT_DIR" -name 'Instabug_dsym_upload.sh' | head -1)
  if [ ! "${SCRIPT_SRC}" ]; then
    echo "Instabug: err: script not found. Make sure that you're including InstabugResources.bundle in your project directory"
    exit 1
  fi
  APP_TOKEN="MY_TOKEN"
  source "${SCRIPT_SRC}"
#- -- SCRIPT END - --
  1. Build your application

Expected Behavior

My application should build fine. Also the DSYMs should be uploaded successfully.

Actual Behavior

My application errors out with this error:

Instabug: err: script not found. Make sure that you're including InstabugResources.bundle in your project directory
Command PhaseScriptExecution failed with a nonzero exit code

Instabug integration code

What an "integration code"?

SDK Version

10.4.0

iOS Version

Not relevant (but min target is iOS 10 if needed).

Device Model

Not relevant.

[Optional] Project That Reproduces the Issue

Additional Notes

I checked out the .zip files the Package.swift points to and found that there are actually InstabugResources.bundle files (see screenshot below), but the script seems not to point to them correctly when Instabug is integrated via SwiftPM. I have the feeling either the script is not updated to accustom SwiftPM or there's an additional step missing to add a symlink to the project somehow which will point to the right files.
Bildschirmfoto 2021-02-19 um 17 00 21

Crash in "Error -[NSURLRequest(Additions) ibg_isWebViewRequest]"

Steps to Reproduce the Problem

No steps, app crashes sometimes

Expected Behavior

there is no crash

Actual Behavior

app crashes

Instabug integration code

Instabug.start(withToken: Constants.Instabug.token, invocationEvents: .none)
Instabug.willSendReportHandler = { report in
            // attach our log files
            let logFileUrls = self.sortedLogFilePaths.map { URL(fileURLWithPath: $0) }
            let maxLogFileCount = min(logFileUrls.count, Constants.Instabug.maxNumberOfLogFiles)
            let logFilesToAttach = logFileUrls[0..<maxLogFileCount]
            logFilesToAttach.forEach {
                report.addFileAttachment(with: $0)
            }

            report.setUserAttribute("value1", withKey: "key1")
            report.setUserAttribute("value2", withKey: "key2")
            // .. and few more

            if let fontSizeType = DynamicTypeSize(UITraitCollection.current.preferredContentSizeCategory) {
                report.setUserAttribute(fontSizeType.name, withKey: Constants.Instabug.fontSizeType)
            }

            return report
        }

SDK Version

12.1.0

iOS Version

16.6.1

Device Model

iPhone XS Max
iPhone 14
etc

[Optional] Project That Reproduces the Issue

N/A crash happens sometimes only, no steps identified to reproduce

Stacktrace:

OS Version: iOS 16.6.1 (20G81)
Report Version: 104

Exception Type: EXC_BREAKPOINT (SIGTRAP)
Crashed Thread: 0

Application Specific Information:
Signal 5, Code 0

Thread 0 Crashed:
0   CoreFoundation                  0x3110a85b0         CFDictionaryGetCount
1   CFNetwork                       0x313099b04         _CFNetworkHTTPConnectionCacheSetLimit
2   CFNetwork                       0x31305b4f8         CFHTTPCookieCopyRequestHeaderFields
3   Instabug                        0x10870ca9c         -[NSURLRequest(Additions) ibg_isWebViewRequest]
4   Instabug                        0x1086de6d0         -[IBGNetworkLoggerController canServeRequest:]
5   Instabug                        0x108776a3c         NetworkTasksListener.createTask
6   Instabug                        0x108776ed0         NetworkTasksListener.taskDidStart
7   Instabug                        0x108839c28         __71-[IBGSwizzler newImplementatioDataTaskDidResume:selector:swizzlerInfo:]_block_invoke_3
8   libdispatch.dylib               0x31f9b631c         _dispatch_call_block_and_release
9   libdispatch.dylib               0x31f9b7ea8         _dispatch_client_callout
10  libdispatch.dylib               0x31f9c66a0         _dispatch_main_queue_drain
11  libdispatch.dylib               0x31f9c62f0         _dispatch_main_queue_callback_4CF
12  CoreFoundation                  0x3110b2c24         __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__
13  CoreFoundation                  0x31109455c         __CFRunLoopRun
14  CoreFoundation                  0x3110993e8         CFRunLoopRunSpecific
15  GraphicsServices                0x387b43358         GSEventRunModal
16  UIKitCore                       0x315494f54         -[UIApplication _run]
17  UIKitCore                       0x315494bb8         UIApplicationMain
18  SwiftUI                         0x3182fec4c         OUTLINED_FUNCTION_895
19  SwiftUI                         0x3182651e8         block_copy_helper.1
20  SwiftUI                         0x31824f290         OUTLINED_FUNCTION_901
21  SampleApp                       0x202fa7608         [inlined] AppLauncher.main
22  SampleApp                       0x202fa7608         [inlined] AppLauncher.$main (<compiler-generated>:6)
23  SampleApp                       0x202fa7608         main
24  <unknown>                       0x1a95a0dec         <redacted>

Xcode binary failure

When Instabug is integrated as a package in Xcode, resolution of the packages often fails with the error:

artifact of binary target `Instabug` failed extraction:
The operation couldn't be completed.
(TSCBasic.StringError error 1.)

108807434-85ad5300-75f8-11eb-80bb-632b1d571230

It seems to be some sort of race condition in Xcode. When the Xcode project is open and the project changes on disk (from a git checkout for example), Xcode actually resolves the packages twice. During that process the error above happens consistently. Our project has other SPM binary dependencies as well though that work fine for some reason. Instabug is always the one that fails.
This issue seems to be fixed in the Xcode 13, but is present in current versions.

I was able to workaround this issue by forking this repo and making the following changes:

  • committing the Instabug.xcframework right into the repo
  • updating the Package.swift to make the binary dependency use a relative path rather than an external URL

This then seems to solve the issue in Xcode.
https://github.com/yonaskolb/Instabug-SP/blob/master/Package.swift

Would this be something this repo could officially adopt? It would probably simplify your deployment process as well as you wouldn't have to upload the binary to https://ios-releases.instabug.com anymore

NSException * "executeFetchRequest:error: A fetch request must have an entity."

Screen Shot 2021-12-16 at 10 55 24 AM

Nothing but issues. Deleted App, cleaned App, nothing. Worked before you updated.

Installed both Via Coca Pods and Swift Package, nothing but crashes.

Happens when I initiate Instabug

    if (self.isRunningLive()) {
    Instabug.start(withToken: web.instaBug(), invocationEvents: [.shake, .screenshot])
    } else {
    Instabug.start(withToken: web.instaBugBeta(), invocationEvents: [.shake, .screenshot])
    }
    Instabug.reproStepsMode = .enable

I comment out the above, my app works.

web.instaBug() & web.instaBugBeta() are just references to my KEYs.

Package Resolution Failed

-Xcode 12.3
-Try and add InstabugSP swift package
-Add fails with the following error:

Screen Shot 2020-12-29 at 12 56 54 PM

Has anything changed with your hosted .zip archive recently? It was working fine back when SPM support launched.

Errors when shipping

Steps to Reproduce the Problem

Archive and upload a project containing Instabug installed through the SPM.

Expected Behavior

Apple shouldn't give me a hard time.

Actual Behavior

Apple is giving me a hard time
image
image

Instabug integration code

I was previously using Cocoapods for the Instabug integration and made sure that the Instabug.framework file isn't in my project anywhere else that through SPM.

#if !targetEnvironment(macCatalyst)
Instabug.welcomeMessageMode = .automatic
Instabug.start(
    withToken: "-----",
    invocationEvents: [.shake, .screenshot]
)
#endif

SDK Version

10.1.0

iOS Version

12+

Device Model

"Any iOS Device (arm64)" build

[Optional] Project That Reproduces the Issue

10.3 release

Hello, would it be possible to release 10.3 on SPM as well? It looks like you guys only pushed the update for cocoapods

Privacy Manifest

Hello!

Do you plan to add a privacy manifest? If so, do you have a release date with this file?
Or the SDK didn't use any Required Reason API?

Crash related to UIPageViewController

After updating Instabug iOS SDK from 10.7.3 to 10.10.1 app crashes when calling the setViewControllers method on the UIPageViewController instance.

Crash is not reproducable after setting the Instabug.reproStepsMode = .enabledWithNoScreenshots.
That actually fixes the issue for us, but still would be great to have it fixed on the SDK level.

Looks like that's the same crash that was reported before:
Instabug/Instabug-iOS#230

Crash does not happen when downgrading back to 10.7.3 version.
Looks like the crash was introduced in SDK version 10.8.0

Stack trace:

2021-11-18 16:26:53.618055+0200 [99102:7243090] *** Assertion failure in -[_UIQueuingScrollView _replaceViews:updatingContents:adjustContentInsets:animated:], _UIQueuingScrollView.m:395
2021-11-18 16:26:53.621335+0200 [99102:7243090] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: [views count] == 3'
*** First throw call stack:
(0x180ee504c 0x199559f54 0x18279e6cc 0x183c28f58 0x183c2c080 0x183c282c4 0x1835c6cd0 0x1836aefd4 0x1834c85f4 0x184bacd90 0x184bb36dc 0x180e57390 0x180e9a724 0x180e9df30 0x180e57e0c 0x180e6b3b8 0x19c7fb38c 0x18380b6a8 0x18358a7f4 0x1006766a0 0x10162da24)
libc++abi: terminating with uncaught exception of type NSException
dyld4 config: DYLD_LIBRARY_PATH=/usr/lib/system/introspection DYLD_INSERT_LIBRARIES=/Developer/usr/lib/libBacktraceRecording.dylib:/Developer/usr/lib/libMainThreadChecker.dylib:/Developer/Library/PrivateFrameworks/DTDDISupport.framework/libViewDebuggerSupport.dylib
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: [views count] == 3'
CGDataProviderDirectGetBytesAtPositionInternal calling provider created with CFData
terminating with uncaught exception of type NSException

Steps to Reproduce the Problem

Please see the description above

Expected Behavior

The app should not crash

Actual Behavior

App crashes

Instabug integration code

not relevant

SDK Version

10.10.1 (looks like it started crashing from version 10.8.0)

iOS Version

Tried on 14.5, 15.1

Device Model

Not relevant.

The latest versions (after 11.7.0) can not be fetched/checked out by CI/CD tool AppCenter

Steps to Reproduce the Problem

  • Update Instabug-SP library to one of the versions above 11.7.0, like the latest 12.2.0
  • Local resolving package graph is working ok
  • Start the same build on AppCenter and it will stuck at the step Checking out 12.2.0 of package ‘Instabug-SP’
  • The same issue does not happen with version 11.7.0 and below

Expected Behavior

  • Checking out the latest versions on AppCenter build creation works ok

Actual Behavior

  • Checking out any version above 11.7.0 does not work, it stucks at that step and never goes beyond.

Instabug integration code

Instabug.start(withToken: "...", invocationEvents: [.shake, .screenshot])

SDK Version

Any version after 11.7.0, even on the the latest 12.2.0

iOS Version

iOS 16.4

Device Model

iOS Simulator, iPad (10th generation)

[Optional] Project That Reproduces the Issue

Instabug SDK Crash - "SIGSEGV SessionReplaySyncManager.sync"

Steps to Reproduce the Problem

N/A - crash caught by our crash reporting platform (Sentry)

Expected Behavior

No crashes in instabug

Actual Behavior

Crash happens

Instabug integration code

Instabug.start(withToken: Constants.Instabug.token, invocationEvents: .none)
Instabug.willSendReportHandler = { report in
            // attach our log files
            let logFileUrls = self.sortedLogFilePaths.map { URL(fileURLWithPath: $0) }
            let maxLogFileCount = min(logFileUrls.count, Constants.Instabug.maxNumberOfLogFiles)
            let logFilesToAttach = logFileUrls[0..<maxLogFileCount]
            logFilesToAttach.forEach {
                report.addFileAttachment(with: $0)
            }

            report.setUserAttribute("value1", withKey: "key1")
            report.setUserAttribute("value2", withKey: "key2")
            // .. and few more

            if let fontSizeType = DynamicTypeSize(UITraitCollection.current.preferredContentSizeCategory) {
                report.setUserAttribute(fontSizeType.name, withKey: Constants.Instabug.fontSizeType)
            }

            return report
        }

SDK Version

12.1.0

iOS Version

17.1.2

Device Model

observed on iPhone 13

[Optional] Project That Reproduces the Issue

Stacktraces:

OS Version: iOS 17.1.2 (21B101)
Report Version: 104

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: SEGV_ACCERR
Crashed Thread: 23

Application Specific Information:
Signal 11, Code 2 >
Attempted to dereference garbage pointer at 0x8000000000000008.

Thread 23 Crashed:
0   libswiftCore.dylib              0x31568e034         swift_isUniquelyReferenced_nonNull_native
1   Instabug                        0x106c95770         SessionReplaySyncManager.sync
2   Instabug                        0x106c94e88         SessionReplaySyncManager.syncDependOnV3Sync
3   Instabug                        0x106c9f7b8         SessionReplayService.syncIfNeeded
4   Instabug                        0x106c9fb60         SessionReplayService.attachLastSessionLogs
5   Instabug                        0x106ca41c0         thunk for closure
6   Instabug                        0x106ad8a3c         Promise.then
7   Instabug                        0x106c63f40         thunk for closure
8   Instabug                        0x106a91a84         __56-[IBGPromise chainOnQueue:chainedFulfill:chainedReject:]_block_invoke.18
9   libdispatch.dylib               0x3329506a4         _dispatch_call_block_and_release
10  libdispatch.dylib               0x3329522fc         _dispatch_client_callout
11  libdispatch.dylib               0x332959960         _dispatch_lane_serial_drain
12  libdispatch.dylib               0x33295a3c0         _dispatch_lane_invoke
13  libdispatch.dylib               0x332965000         _dispatch_root_queue_drain_deferred_wlh
14  libdispatch.dylib               0x332964874         _dispatch_workloop_worker_thread
15  libsystem_pthread.dylib         0x3f5e95960         _pthread_wqthread

Other stacktrace pointing to the same method:

OS Version: iOS 17.1.2 (21B101)
Report Version: 104

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: SEGV_ACCERR
Crashed Thread: 0

Application Specific Information:
Signal 11, Code 2 >
Attempted to dereference garbage pointer at 0x8000000000000008.

Thread 0 Crashed:
0   libswiftCore.dylib              0x3271ce034         swift_isUniquelyReferenced_nonNull_native
1   Instabug                        0x1090ed770         SessionReplaySyncManager.sync
2   Instabug                        0x1090ece88         SessionReplaySyncManager.syncDependOnV3Sync
3   Instabug                        0x1090f77b8         SessionReplayService.syncIfNeeded
4   Instabug                        0x1090f74a0         SessionReplayService.attachLastSessionLogs
5   Instabug                        0x1090f8b8c         SessionReplayService.startObservingOnSessionV3Sync
6   Instabug                        0x108e96ed0         ActionObservableEvent.addObserver<T>
7   Instabug                        0x108f635f0         thunk for closure
8   libdispatch.dylib               0x3444906a4         _dispatch_call_block_and_release
9   libdispatch.dylib               0x3444922fc         _dispatch_client_callout
10  libdispatch.dylib               0x3444a0994         _dispatch_main_queue_drain
11  libdispatch.dylib               0x3444a05ac         _dispatch_main_queue_callback_4CF
12  CoreFoundation                  0x334553208         __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__
13  CoreFoundation                  0x33454ff14         __CFRunLoopRun
14  CoreFoundation                  0x33454f664         CFRunLoopRunSpecific
15  GraphicsServices                0x3bad155e8         GSEventRunModal
16  UIKitCore                       0x338b902b0         -[UIApplication _run]
17  UIKitCore                       0x338b8f8ec         UIApplicationMain
18  SwiftUI                         0x33d05e0f8         OUTLINED_FUNCTION_31
19  SwiftUI                         0x33d05df3c         OUTLINED_FUNCTION_31
20  SwiftUI                         0x33cccf864         OUTLINED_FUNCTION_26
21  SampleApp                       0x2031437f0         [inlined] AppLauncher.main
22  SampleApp                       0x2031437f0         [inlined] AppLauncher.$main (<compiler-generated>:6)
23  SampleApp                       0x2031437f0         main
24  <unknown>                       0x1cf29edcc         <redacted>

Failing to download swift package due to SSL error in Xcode Cloud.

Steps to Reproduce the Problem

  1. add instabug-SP as a dependency to your project
  2. build in Xcode cloud

Expected Behavior

  1. package should resolve successfully

Actual Behavior

xcodebuild: error: Could not resolve package dependencies: failed downloading 'https://ios-releases.instabug.com/release/Instabug/10.8.0/archive.zip' which is required by binary target 'Instabug': downloadError("Error Domain=NSURLErrorDomain Code=-1200 \"An SSL error has occurred and a secure connection to the server cannot be made.\" UserInfo={NSErrorFailingURLStringKey=https://ios-releases.instabug.com/release/Instabug/10.8.0/archive.zip, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDownloadTask <106890B4-FE12-453D-B50C-68C53E5E2AD7>.<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=(\n \"LocalDownloadTask <106890B4-FE12-453D-B50C-68C53E5E2AD7>.<1>\"\n), NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://ios-releases.instabug.com/release/Instabug/10.8.0/archive.zip, NSUnderlyingError=0x6000016e3b40 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 \"(null)\" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, _kCFNetworkCFStreamSSLErrorOriginalValue=-9836, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9836, _NSURLErrorNWPathKey=satisfied (Path is satisfied), viable, interface: utun3, ipv4, dns}}, _kCFStreamErrorCodeKey=-9836}") fatalError

Instabug integration code

Make sure to remove your app token.

SDK Version

10.8.0

iOS Version

n/a

Device Model

n/a

[Optional] Project That Reproduces the Issue

Checksum appears to be wrong

Setup a project and include Instabug-SP via Swift package manager.
To test: set the dependency rule to commit f9933135429c1de6d18daef0c265fcad5473aed6 (which is the master branch by the time of writing).

Expected Behavior

It loads the Instabug framework into the project

Actual Behavior

It says:

checksum of downloaded artifact of binary target 'Instabug' (d8557ca5e3ce264e1622573d254fda99fe0886ae87eb3c76a1587ee42a26962d) does not match checksum specified by the manifest (1151f47fe969df7c43429c938cd2b7661c9b775543180d2b931cea6dc59a0bbb)

Screenshot 2021-10-11 at 16 31 51

I already tried to clean my swift package manager cache/xcode clean build folder/ xcode derived data but nothing worked. Our CI has the same issue.

SDK Version

v10.9.3

Xcode Version

Tested on Xcode 12.5 and Xcode 13

[Bug]: Infinite loop causes app to crash after force quitting app

Steps to Reproduce the Problem

  1. Run the app
  2. Double tap home button (or swipe up bottom bar) to view app switcher
  3. Force quit app
  4. Observe crash alert notifying that app has crash

Actual Behavior

Crash occurs with some sort of infinite loop, see crash log below.

Instabug integration code

public func setupInstabug() {
        // Configuring instabug sdk
        var instabugKey = "xxxxxx"
        Instabug.start(withToken: instabugKey, invocationEvents: [.shake, .screenshot])
        Instabug.welcomeMessageMode = .disabled
        CrashReporting.enabled = true
        CrashReporting.oomEnabled = true
        NetworkLogger.enabled = true
    }

SDK Version

Instabug 11.4.1

iOS Version

Observed in iOS 16, 15, 14 crash reports

Device Model

Multiple

Crash log

Translated Report (Full Report Below)
-------------------------------------

Incident Identifier: 57CD9EBD-29DB-4C79-865B-61C4717A620C
Beta Identifier:     E1CC0C50-39E2-4306-97EA-6DE3229D8DB2
Hardware Model:      iPhone15,2
Process:             xxxxxx [52374]
Path:                /private/var/containers/Bundle/Application/119BC915-1BE0-411D-A682-BA6523133F5E/xxxxxx.app/xxxxxx
Identifier:          com.xxxxxx.debug
Version:             4.2.0 (8)
AppStoreTools:       14B44
AppVariant:          1:iPhone15,2:16
Beta:                YES
Code Type:           ARM-64 (Native)
Role:                Non UI
Parent Process:      launchd [1]
Coalition:           com.xxxxxx.debug [8995]

Date/Time:           2022-10-27 11:46:29.2078 -0400
Launch Time:         2022-10-27 11:44:45.4504 -0400
OS Version:          iPhone OS 16.0.3 (20A392)
Release Type:        User
Baseband Version:    1.00.08
Report Version:      104

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_PROTECTION_FAILURE at 0x000000016b1fbff8
Exception Codes: 0x0000000000000002, 0x000000016b1fbff8
VM Region Info: 0x16b1fbff8 is in 0x16b1f8000-0x16b1fc000;  bytes after start: 16376  bytes before end: 7
      REGION TYPE                 START - END      [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
      mapped file              13524c000-135258000 [   48K] ---/--- SM=COW  ...t_id=d9d0867f
      GAP OF 0x35fa0000 BYTES
--->  STACK GUARD              16b1f8000-16b1fc000 [   16K] ---/rwx SM=NUL  ... for thread 0
      Stack                    16b1fc000-16b2f8000 [ 1008K] rw-/rwx SM=PRV  thread 0
Termination Reason: SIGNAL 11 Segmentation fault: 11
Terminating Process: exc handler [52374]

Triggered by Thread:  0

Kernel Triage:
VM - pmap_enter retried due to resource shortage
VM - pmap_enter retried due to resource shortage
VM - pmap_enter retried due to resource shortage
VM - pmap_enter retried due to resource shortage
VM - pmap_enter retried due to resource shortage


Thread 0 name:   Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libsystem_pthread.dylib       	       0x1e27e0be4 ___chkstk_darwin + 60
1   libdispatch.dylib             	       0x19d3592f8 _dispatch_mach_send_and_wait_for_reply + 432
2   libdispatch.dylib             	       0x19d3596ec dispatch_mach_send_with_result_and_wait_for_reply + 60
3   libxpc.dylib                  	       0x1e28337ac xpc_connection_send_message_with_reply_sync + 240
4   CoreFoundation                	       0x195f599f4 __99-[CFPrefsPlistSource sendFullyPreparedMessage:toConnection:settingValues:forKeys:count:retryCount:]_block_invoke + 64
5   CoreFoundation                	       0x19605803c -[_CFXPreferences withConnectionForRole:andUserIdentifier:performBlock:] + 52
6   CoreFoundation                	       0x195fb6874 -[CFPrefsPlistSource sendFullyPreparedMessage:toConnection:settingValues:forKeys:count:retryCount:] + 316
7   CoreFoundation                	       0x195f0d758 -[CFPrefsPlistSource sendMessageSettingValues:forKeys:count:] + 828
8   CoreFoundation                	       0x195efeed0 -[CFPrefsPlistSource alreadylocked_setPrecopiedValues:forKeys:count:from:] + 1264
9   CoreFoundation                	       0x195efdf10 -[CFPrefsSource setValues:forKeys:count:copyValues:removeValuesForKeys:count:from:] + 420
10  CoreFoundation                	       0x195efe9d0 -[CFPrefsSource setValues:forKeys:count:copyValues:from:] + 36
11  CoreFoundation                	       0x195efe510 -[CFPrefsSearchListSource alreadylocked_setPrecopiedValues:forKeys:count:from:] + 1004
12  CoreFoundation                	       0x195efdf10 -[CFPrefsSource setValues:forKeys:count:copyValues:removeValuesForKeys:count:from:] + 420
13  CoreFoundation                	       0x195efdd44 -[CFPrefsSource setValue:forKey:from:] + 72
14  CoreFoundation                	       0x195efdc74 __76-[_CFXPreferences setValue:forKey:appIdentifier:container:configurationURL:]_block_invoke + 60
15  CoreFoundation                	       0x195f54fe4 __108-[_CFXPreferences(SearchListAdditions) withSearchListForIdentifier:container:cloudConfigurationURL:perform:]_block_invoke + 392
16  CoreFoundation                	       0x195f40bb8 normalizeQuintuplet + 356
17  CoreFoundation                	       0x195f3d458 -[_CFXPreferences withSearchListForIdentifier:container:cloudConfigurationURL:perform:] + 152
18  CoreFoundation                	       0x195ee3b34 -[_CFXPreferences setValue:forKey:appIdentifier:container:configurationURL:] + 128
19  CoreFoundation                	       0x195ee3a70 _CFPreferencesSetAppValueWithContainerAndConfiguration + 120
20  Foundation                    	       0x1903585ac -[NSUserDefaults(NSUserDefaults) setObject:forKey:] + 68
21  Instabug                      	       0x10b9022b4 0x10b794000 + 1499828
22  Instabug                      	       0x10b90235c 0x10b794000 + 1499996
23  Instabug                      	       0x10b913968 -[IBGDefaults setAppTerminationDetectedWithSwizzlingDate:] + 92
24  Instabug                      	       0x10bac7fa8 0x10b794000 + 3358632
25  Instabug                      	       0x10bad3e28 0x10b794000 + 3407400
26  Instabug                      	       0x10b938f00 __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 356
27  CoreFoundation                	       0x195f2ca14 __invoking___ + 148
28  CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
29  OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
30  OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
31  Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
32  Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
33  CoreFoundation                	       0x195f2ca14 __invoking___ + 148
34  CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
35  OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
36  OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
37  Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
38  Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
39  CoreFoundation                	       0x195f2ca14 __invoking___ + 148
40  CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
41  OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
42  OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
43  Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
44  Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
...
406 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
407 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
408 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
409 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
410 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
411 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
412 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
413 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
414 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
415 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
416 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
417 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
418 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
419 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
420 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
421 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
422 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
423 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
424 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
425 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
426 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
427 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
428 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
429 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
430 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
431 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
432 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
433 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
434 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
435 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
436 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
437 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
438 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
439 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
440 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
441 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
442 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
443 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
444 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
445 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
446 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
447 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
448 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
449 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
450 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
451 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
452 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
453 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
454 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
455 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
456 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
457 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
458 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
459 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
460 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
461 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
462 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
463 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
464 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
465 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
466 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
467 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
468 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
469 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
470 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
471 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
472 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
473 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
474 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
475 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
476 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
477 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
478 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
479 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
480 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
481 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
482 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
483 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
484 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
485 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
486 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
487 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
488 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
489 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
490 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
491 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
492 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
493 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
494 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
495 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
496 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
497 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
498 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
499 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
500 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
501 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
502 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
503 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
504 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256
505 Instabug                      	       0x10b93a48c INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION + 16
506 Instabug                      	       0x10b938f3c __78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke + 416
507 CoreFoundation                	       0x195f2ca14 __invoking___ + 148
508 CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
509 OneSignalCore                 	       0x10b058984 +[SwizzlingForwarder callSelector:onObject:withArgs:] + 312
510 OneSignal                     	       0x10b113184 -[OneSignalAppDelegate oneSignalApplicationWillTerminate:] + 256

Thread 1 name:  com.apple.uikit.eventfetch-thread
Thread 1:
0   libsystem_kernel.dylib        	       0x1d25a3b48 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1d25b6008 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1d25b6248 mach_msg_overwrite + 388
3   libsystem_kernel.dylib        	       0x1d25a408c mach_msg + 24
4   CoreFoundation                	       0x195f32e00 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x195f34044 __CFRunLoopRun + 1232
6   CoreFoundation                	       0x195f391e4 CFRunLoopRunSpecific + 612
7   Foundation                    	       0x19033d818 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212
8   Foundation                    	       0x19033d700 -[NSRunLoop(NSRunLoop) runUntilDate:] + 64
9   UIKitCore                     	       0x19851d88c -[UIEventFetcher threadMain] + 436
10  Foundation                    	       0x190356ce8 __NSThread__start__ + 716
11  libsystem_pthread.dylib       	       0x1e27e16cc _pthread_start + 148
12  libsystem_pthread.dylib       	       0x1e27e0ba4 thread_start + 8

Thread 2:
0   libsystem_kernel.dylib        	       0x1d25a3b48 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1d25b6008 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1d25b6248 mach_msg_overwrite + 388
3   libsystem_kernel.dylib        	       0x1d25a408c mach_msg + 24
4   Instabug                      	       0x10baf51c0 exception_server_thread + 188
5   libsystem_pthread.dylib       	       0x1e27e16cc _pthread_start + 148
6   libsystem_pthread.dylib       	       0x1e27e0ba4 thread_start + 8

Thread 3 name:  com.apple.CoreMotion.MotionThread
Thread 3:
0   libsystem_kernel.dylib        	       0x1d25a3b48 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1d25b6008 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1d25b6248 mach_msg_overwrite + 388
3   libsystem_kernel.dylib        	       0x1d25a408c mach_msg + 24
4   CoreFoundation                	       0x195f32e00 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x195f34044 __CFRunLoopRun + 1232
6   CoreFoundation                	       0x195f391e4 CFRunLoopRunSpecific + 612
7   CoreFoundation                	       0x195f7d014 CFRunLoopRun + 64
8   CoreMotion                    	       0x1a12b4b04 0x1a12a1000 + 80644
9   libsystem_pthread.dylib       	       0x1e27e16cc _pthread_start + 148
10  libsystem_pthread.dylib       	       0x1e27e0ba4 thread_start + 8

Thread 4 name:  com.apple.CFNetwork.CustomProtocols
Thread 4:
0   libsystem_kernel.dylib        	       0x1d25a3b48 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1d25b6008 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1d25b6248 mach_msg_overwrite + 388
3   libsystem_kernel.dylib        	       0x1d25a408c mach_msg + 24
4   CoreFoundation                	       0x195f32e00 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x195f34044 __CFRunLoopRun + 1232
6   CoreFoundation                	       0x195f391e4 CFRunLoopRunSpecific + 612
7   CFNetwork                     	       0x197287bac 0x197033000 + 2444204
8   Foundation                    	       0x190356ce8 __NSThread__start__ + 716
9   libsystem_pthread.dylib       	       0x1e27e16cc _pthread_start + 148
10  libsystem_pthread.dylib       	       0x1e27e0ba4 thread_start + 8

Thread 5 name:  com.apple.NSURLConnectionLoader
Thread 5:
0   libsystem_kernel.dylib        	       0x1d25a3b48 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1d25b6008 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1d25b6248 mach_msg_overwrite + 388
3   libsystem_kernel.dylib        	       0x1d25a408c mach_msg + 24
4   CoreFoundation                	       0x195f32e00 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x195f34044 __CFRunLoopRun + 1232
6   CoreFoundation                	       0x195f391e4 CFRunLoopRunSpecific + 612
7   CFNetwork                     	       0x197287bac 0x197033000 + 2444204
8   Foundation                    	       0x190356ce8 __NSThread__start__ + 716
9   libsystem_pthread.dylib       	       0x1e27e16cc _pthread_start + 148
10  libsystem_pthread.dylib       	       0x1e27e0ba4 thread_start + 8

Thread 6 name:  com.squareup.SocketRocket.NetworkThread
Thread 6:
0   libsystem_kernel.dylib        	       0x1d25a3b48 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1d25b6008 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1d25b6248 mach_msg_overwrite + 388
3   libsystem_kernel.dylib        	       0x1d25a408c mach_msg + 24
4   CoreFoundation                	       0x195f32e00 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x195f34044 __CFRunLoopRun + 1232
6   CoreFoundation                	       0x195f391e4 CFRunLoopRunSpecific + 612
7   Foundation                    	       0x19033d818 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212
8   Intercom                      	       0x10b45e4d0 0x10b3d8000 + 550096
9   Foundation                    	       0x190356ce8 __NSThread__start__ + 716
10  libsystem_pthread.dylib       	       0x1e27e16cc _pthread_start + 148
11  libsystem_pthread.dylib       	       0x1e27e0ba4 thread_start + 8

Thread 7 name:  com.apple.CFSocket.private
Thread 7:
0   libsystem_kernel.dylib        	       0x1d25a46ac __select + 8
1   CoreFoundation                	       0x195f839d4 __CFSocketManager + 636
2   libsystem_pthread.dylib       	       0x1e27e16cc _pthread_start + 148
3   libsystem_pthread.dylib       	       0x1e27e0ba4 thread_start + 8

Thread 8:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0

Thread 9:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0

Thread 10:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0

Thread 11:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0

Thread 12:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0

Thread 13:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0

Thread 14:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0

Thread 15 name:  com.apple.SwiftUI.AsyncRenderer
Thread 15:
0   libsystem_kernel.dylib        	       0x1d25a3b48 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1d25b6008 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1d25b6248 mach_msg_overwrite + 388
3   libsystem_kernel.dylib        	       0x1d25a408c mach_msg + 24
4   CoreFoundation                	       0x195f32e00 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x195f34044 __CFRunLoopRun + 1232
6   CoreFoundation                	       0x195f391e4 CFRunLoopRunSpecific + 612
7   Foundation                    	       0x19033d818 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212
8   Foundation                    	       0x19033d6ac -[NSRunLoop(NSRunLoop) run] + 64
9   SwiftUI                       	       0x1998ba558 0x19980d000 + 709976
10  SwiftUI                       	       0x1998b869c 0x19980d000 + 702108
11  Foundation                    	       0x190356ce8 __NSThread__start__ + 716
12  libsystem_pthread.dylib       	       0x1e27e16cc _pthread_start + 148
13  libsystem_pthread.dylib       	       0x1e27e0ba4 thread_start + 8

Thread 16:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0

Thread 17:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0

Thread 18 name:   Dispatch queue: com.apple.UIKit.KeyboardManagement
Thread 18:
0   libsystem_kernel.dylib        	       0x1d25a4680 __ulock_wait + 8
1   libdispatch.dylib             	       0x19d33e9cc _dlock_wait + 56
2   libdispatch.dylib             	       0x19d33e780 _dispatch_thread_event_wait_slow + 56
3   libdispatch.dylib             	       0x19d34d860 __DISPATCH_WAIT_FOR_QUEUE__ + 368
4   libdispatch.dylib             	       0x19d34d40c _dispatch_sync_f_slow + 144
5   UIKitCore                     	       0x1983e905c __37-[_UIRemoteKeyboards startConnection]_block_invoke_3 + 156
6   CoreFoundation                	       0x195f2ca14 __invoking___ + 148
7   CoreFoundation                	       0x195ed8f2c -[NSInvocation invoke] + 428
8   Foundation                    	       0x19039cd38 __NSXPCCONNECTION_IS_CALLING_OUT_TO_REPLY_BLOCK__ + 16
9   Foundation                    	       0x19036e2fc -[NSXPCConnection _decodeAndInvokeReplyBlockWithEvent:sequence:replyInfo:] + 520
10  Foundation                    	       0x190948f44 __88-[NSXPCConnection _sendInvocation:orArguments:count:methodSignature:selector:withProxy:]_block_invoke_5 + 188
11  libxpc.dylib                  	       0x1e28413e4 _xpc_connection_reply_callout + 124
12  libxpc.dylib                  	       0x1e283447c _xpc_connection_call_reply_async + 88
13  libdispatch.dylib             	       0x19d33e05c _dispatch_client_callout3 + 20
14  libdispatch.dylib             	       0x19d35bf58 _dispatch_mach_msg_async_reply_invoke + 344
15  libdispatch.dylib             	       0x19d34556c _dispatch_lane_serial_drain + 376
16  libdispatch.dylib             	       0x19d346214 _dispatch_lane_invoke + 436
17  libdispatch.dylib             	       0x19d350e10 _dispatch_workloop_worker_thread + 652
18  libsystem_pthread.dylib       	       0x1e27e0df8 _pthread_wqthread + 288
19  libsystem_pthread.dylib       	       0x1e27e0b98 start_wqthread + 8

Thread 19:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0

Thread 20:
0   libsystem_pthread.dylib       	       0x1e27e0b90 start_wqthread + 0


Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000001   x1: 0x0000000000004000   x2: 0x0000000200131513   x3: 0x0000130300001b03
    x4: 0x400000000000dd07   x5: 0x0000000000000000   x6: 0x0056ff0000000000   x7: 0x0000000000000000
    x8: 0x0000000000004000   x9: 0x0000000000004000  x10: 0x000000016b1fbef0  x11: 0x000000016b1fc000
   x12: 0x000000000000ff00  x13: 0x0000000000000000  x14: 0x0000000600000000  x15: 0x0000002800000000
   x16: 0x00000001e27e0ba8  x17: 0x00000001ec095320  x18: 0x0000000000000000  x19: 0x0000000281700120
   x20: 0x000000016b20001f  x21: 0x00000001258f47c0  x22: 0x0000000000004000  x23: 0x0000000000001303
   x24: 0x000000002900004d  x25: 0x0000000000000000  x26: 0x0000000000001b03  x27: 0x00000002829adfb0
   x28: 0x00000001ec09aaa0   fp: 0x000000016b200000   lr: 0x000000019d3592f8
    sp: 0x000000016b1ffef0   pc: 0x00000001e27e0be4 cpsr: 0x80001000
   far: 0x000000016b1fbff8  esr: 0x92000007 (Data Abort) byte read Translation fault

Binary Images:
       0x1e27e0000 -        0x1e27ebfff libsystem_pthread.dylib arm64e  <e0674d941a2936b9a1f9ca129f0cfc7e> /usr/lib/system/libsystem_pthread.dylib
       0x19d33a000 -        0x19d380fff libdispatch.dylib arm64e  <c663d847b94f3fb0925432edbc55315e> /usr/lib/system/libdispatch.dylib
       0x1e2824000 -        0x1e2863fff libxpc.dylib arm64e  <bf679bcd7230311ba4da1dc48d787abc> /usr/lib/system/libxpc.dylib
       0x195eb8000 -        0x19629cfff CoreFoundation arm64e  <42c5c91704473995b50fde4d132c2435> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x1902fc000 -        0x190c46fff Foundation arm64e  <aa92cd58561a341492f4b4120298b39a> /System/Library/Frameworks/Foundation.framework/Foundation
       0x10b794000 -        0x10bbd7fff Instabug arm64  <adc409d876da3bc8916a002e229a9449> /private/var/containers/Bundle/Application/119BC915-1BE0-411D-A682-BA6523133F5E/xxxxxx.app/Frameworks/Instabug.framework/Instabug
       0x10b054000 -        0x10b067fff OneSignalCore arm64  <59e57284c820361d8ae0f3241f3be390> /private/var/containers/Bundle/Application/119BC915-1BE0-411D-A682-BA6523133F5E/xxxxxx.app/Frameworks/OneSignalCore.framework/OneSignalCore
       0x10b0e4000 -        0x10b143fff OneSignal arm64  <7cbc4ca676693442bc2d5dad6b031c22> /private/var/containers/Bundle/Application/119BC915-1BE0-411D-A682-BA6523133F5E/xxxxxx.app/Frameworks/OneSignal.framework/OneSignal
       0x1d25a3000 -        0x1d25d9ffb libsystem_kernel.dylib arm64e  <d3eb8b567c223265a985a436bc8caf15> /usr/lib/system/libsystem_kernel.dylib
       0x198046000 -        0x19980cfff UIKitCore arm64e  <7b942fa4cb7633759972f58c14492fb4> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
       0x1a12a1000 -        0x1a1680fff CoreMotion arm64e  <1c7c3d6c33e33cf79fdfffdd45d7d3f0> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
       0x197033000 -        0x1973f8fff CFNetwork arm64e  <35605de33723335a83d96f35f2989935> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
       0x10b3d8000 -        0x10b65ffff Intercom arm64  <946f9fbc777a3fc7ac5aa32556b19184> /private/var/containers/Bundle/Application/119BC915-1BE0-411D-A682-BA6523133F5E/xxxxxx.app/Frameworks/Intercom.framework/Intercom
       0x19980d000 -        0x19b055fff SwiftUI arm64e  <122e646e6b173561975fc414c8dae3d3> /System/Library/Frameworks/SwiftUI.framework/SwiftUI
               0x0 - 0xffffffffffffffff ??? unknown-arch  <00000000000000000000000000000000> ???

EOF

-----------
Full Report
-----------

{"roots_installed":0,"app_cohort":"2|date=1666823400000&sf=143441&tid=5b7a0c55da03a57a90e9be868a30c8806e789ff9a78348aacd4813b0ef46e8de&ttype=i","app_name":"xxxxxx","app_version":"4.2.0","timestamp":"2022-10-27 11:46:29.00 -0400","slice_uuid":"0c181679-f201-30d4-acdf-45491a7ce3ca","adam_id":"1546450106","build_version":"8","platform":2,"bundleID":"com.xxxxxx.debug","share_with_app_devs":1,"is_first_party":0,"bug_type":"309","os_version":"iPhone OS 16.0.3 (20A392)","incident_id":"57CD9EBD-29DB-4C79-865B-61C4717A620C","name":"xxxxxx","is_beta":1}
{
  "uptime" : 620000,
  "procRole" : "Non UI",
  "version" : 2,
  "userID" : 501,
  "deployVersion" : 210,
  "modelCode" : "iPhone15,2",
  "coalitionID" : 8995,
  "osVersion" : {
    "isEmbedded" : true,
    "train" : "iPhone OS 16.0.3",
    "releaseType" : "User",
    "build" : "20A392"
  },
  "captureTime" : "2022-10-27 11:46:29.2078 -0400",
  "incident" : "57CD9EBD-29DB-4C79-865B-61C4717A620C",
  "pid" : 52374,
  "cpuType" : "ARM-64",
  "roots_installed" : 0,
  "bug_type" : "309",
  "procLaunch" : "2022-10-27 11:44:45.4504 -0400",
  "procStartAbsTime" : 14917835779258,
  "procExitAbsTime" : 14920325938170,
  "procName" : "xxxxxx",
  "procPath" : "\/private\/var\/containers\/Bundle\/Application\/119BC915-1BE0-411D-A682-BA6523133F5E\/xxxxxx.app\/xxxxxx",
  "bundleInfo" : {"CFBundleShortVersionString":"4.2.0","CFBundleVersion":"8","CFBundleIdentifier":"com.xxxxxx.debug","DTAppStoreToolsBuild":"14B44"},
  "storeInfo" : {"itemID":"1546450106","storeCohortMetadata":"2|date=1666823400000&sf=143441&tid=5b7a0c55da03a57a90e9be868a30c8806e789ff9a78348aacd4813b0ef46e8de&ttype=i","entitledBeta":true,"deviceIdentifierForVendor":"E1CC0C50-39E2-4306-97EA-6DE3229D8DB2","softwareVersionExternalIdentifier":"99268811","applicationVariant":"1:iPhone15,2:16","thirdParty":true},
  "parentProc" : "launchd",
  "parentPid" : 1,
  "coalitionName" : "com.xxxxxx.debug",
  "isBeta" : 1,
  "basebandVersion" : "1.00.08",
  "vmRegionInfo" : "0x16b1fbff8 is in 0x16b1f8000-0x16b1fc000;  bytes after start: 16376  bytes before end: 7\n      REGION TYPE                 START - END      [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      mapped file              13524c000-135258000 [   48K] ---\/--- SM=COW  ...t_id=d9d0867f\n      GAP OF 0x35fa0000 BYTES\n--->  STACK GUARD              16b1f8000-16b1fc000 [   16K] ---\/rwx SM=NUL  ... for thread 0\n      Stack                    16b1fc000-16b2f8000 [ 1008K] rw-\/rwx SM=PRV  thread 0",
  "exception" : {"codes":"0x0000000000000002, 0x000000016b1fbff8","rawCodes":[2,6092210168],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_PROTECTION_FAILURE at 0x000000016b1fbff8"},
  "termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":52374},
  "ktriageinfo" : "VM - pmap_enter retried due to resource shortage\nVM - pmap_enter retried due to resource shortage\nVM - pmap_enter retried due to resource shortage\nVM - pmap_enter retried due to resource shortage\nVM - pmap_enter retried due to resource shortage\n",
  "vmregioninfo" : "0x16b1fbff8 is in 0x16b1f8000-0x16b1fc000;  bytes after start: 16376  bytes before end: 7\n      REGION TYPE                 START - END      [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      mapped file              13524c000-135258000 [   48K] ---\/--- SM=COW  ...t_id=d9d0867f\n      GAP OF 0x35fa0000 BYTES\n--->  STACK GUARD              16b1f8000-16b1fc000 [   16K] ---\/rwx SM=NUL  ... for thread 0\n      Stack                    16b1fc000-16b2f8000 [ 1008K] rw-\/rwx SM=PRV  thread 0",
  "faultingThread" : 0,
  "threads" : [{"triggered":true,"id":7169824,"threadState":{"x":[{"value":1},{"value":16384},{"value":8591185171},{"value":20903605836547},{"value":4611686018427444487},{"value":0},{"value":24487223462199296},{"value":0},{"value":16384},{"value":16384},{"value":6092209904},{"value":6092210176},{"value":65280},{"value":0},{"value":25769803776},{"value":171798691840},{"value":8094878632,"symbolLocation":0,"symbol":"___chkstk_darwin"},{"value":8255001376,"symbolLocation":0,"symbol":"OBJC_CLASS_$_OS_dispatch_mach_msg"},{"value":0},{"value":10761535776},{"value":6092226591},{"value":4925114304},{"value":16384},{"value":4867},{"value":687865933},{"value":0},{"value":6915},{"value":10781122480},{"value":8255023776,"symbolLocation":224,"symbol":"_main_thread"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6932501240},"cpsr":{"value":2147487744},"fp":{"value":6092226560},"sp":{"value":6092226288},"esr":{"value":2449473543,"description":"(Data Abort) byte read Translation fault"},"pc":{"value":8094878692,"matchesCrashFrame":1},"far":{"value":6092210168}},"queue":"com.apple.main-thread","frames":[{"imageOffset":3044,"symbol":"___chkstk_darwin","symbolLocation":60,"imageIndex":0},{"imageOffset":127736,"symbol":"_dispatch_mach_send_and_wait_for_reply","symbolLocation":432,"imageIndex":1},{"imageOffset":128748,"symbol":"dispatch_mach_send_with_result_and_wait_for_reply","symbolLocation":60,"imageIndex":1},{"imageOffset":63404,"symbol":"xpc_connection_send_message_with_reply_sync","symbolLocation":240,"imageIndex":2},{"imageOffset":662004,"symbol":"__99-[CFPrefsPlistSource sendFullyPreparedMessage:toConnection:settingValues:forKeys:count:retryCount:]_block_invoke","symbolLocation":64,"imageIndex":3},{"imageOffset":1703996,"symbol":"-[_CFXPreferences withConnectionForRole:andUserIdentifier:performBlock:]","symbolLocation":52,"imageIndex":3},{"imageOffset":1042548,"symbol":"-[CFPrefsPlistSource sendFullyPreparedMessage:toConnection:settingValues:forKeys:count:retryCount:]","symbolLocation":316,"imageIndex":3},{"imageOffset":350040,"symbol":"-[CFPrefsPlistSource sendMessageSettingValues:forKeys:count:]","symbolLocation":828,"imageIndex":3},{"imageOffset":290512,"symbol":"-[CFPrefsPlistSource alreadylocked_setPrecopiedValues:forKeys:count:from:]","symbolLocation":1264,"imageIndex":3},{"imageOffset":286480,"symbol":"-[CFPrefsSource setValues:forKeys:count:copyValues:removeValuesForKeys:count:from:]","symbolLocation":420,"imageIndex":3},{"imageOffset":289232,"symbol":"-[CFPrefsSource setValues:forKeys:count:copyValues:from:]","symbolLocation":36,"imageIndex":3},{"imageOffset":288016,"symbol":"-[CFPrefsSearchListSource alreadylocked_setPrecopiedValues:forKeys:count:from:]","symbolLocation":1004,"imageIndex":3},{"imageOffset":286480,"symbol":"-[CFPrefsSource setValues:forKeys:count:copyValues:removeValuesForKeys:count:from:]","symbolLocation":420,"imageIndex":3},{"imageOffset":286020,"symbol":"-[CFPrefsSource setValue:forKey:from:]","symbolLocation":72,"imageIndex":3},{"imageOffset":285812,"symbol":"__76-[_CFXPreferences setValue:forKey:appIdentifier:container:configurationURL:]_block_invoke","symbolLocation":60,"imageIndex":3},{"imageOffset":643044,"symbol":"__108-[_CFXPreferences(SearchListAdditions) withSearchListForIdentifier:container:cloudConfigurationURL:perform:]_block_invoke","symbolLocation":392,"imageIndex":3},{"imageOffset":560056,"symbol":"normalizeQuintuplet","symbolLocation":356,"imageIndex":3},{"imageOffset":545880,"symbol":"-[_CFXPreferences withSearchListForIdentifier:container:cloudConfigurationURL:perform:]","symbolLocation":152,"imageIndex":3},{"imageOffset":178996,"symbol":"-[_CFXPreferences setValue:forKey:appIdentifier:container:configurationURL:]","symbolLocation":128,"imageIndex":3},{"imageOffset":178800,"symbol":"_CFPreferencesSetAppValueWithContainerAndConfiguration","symbolLocation":120,"imageIndex":3},{"imageOffset":378284,"symbol":"-[NSUserDefaults(NSUserDefaults) setObject:forKey:]","symbolLocation":68,"imageIndex":4},{"imageOffset":1499828,"imageIndex":5},{"imageOffset":1499996,"imageIndex":5},{"imageOffset":1571176,"symbol":"-[IBGDefaults setAppTerminationDetectedWithSwizzlingDate:]","symbolLocation":92,"imageIndex":5},{"imageOffset":3358632,"imageIndex":5},{"imageOffset":3407400,"imageIndex":5},{"imageOffset":1724160,"symbol":"__78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke","symbolLocation":356,"imageIndex":5},{"imageOffset":477716,"symbol":"__invoking___","symbolLocation":148,"imageIndex":3},{"imageOffset":134956,"symbol":"-[NSInvocation invoke]","symbolLocation":428,"imageIndex":3},{"imageOffset":18820,"symbol":"+[SwizzlingForwarder callSelector:onObject:withArgs:]","symbolLocation":312,"imageIndex":6},{"imageOffset":192900,"symbol":"-[OneSignalAppDelegate oneSignalApplicationWillTerminate:]","symbolLocation":256,"imageIndex":7},{"imageOffset":1729676,"symbol":"INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION","symbolLocation":16,"imageIndex":5},{"imageOffset":1724220,"symbol":"__78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke","symbolLocation":416,"imageIndex":5},{"imageOffset":477716,"symbol":"__invoking___","symbolLocation":148,"imageIndex":3},{"imageOffset":134956,"symbol":"-[NSInvocation invoke]","symbolLocation":428,"imageIndex":3},{"imageOffset":18820,"symbol":"+[SwizzlingForwarder callSelector:onObject:withArgs:]","symbolLocation":312,"imageIndex":6},{"imageOffset":192900,"symbol":"-[OneSignalAppDelegate oneSignalApplicationWillTerminate:]","symbolLocation":256,"imageIndex":7},{"imageOffset":1729676,"symbol":"INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION","symbolLocation":16,"imageIndex":5},{"imageOffset":1724220,"symbol":"__78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke","symbolLocation":416,"imageIndex":5},{"imageOffset":477716,"symbol":"__invoking___","symbolLocation":148,"imageIndex":3},{"imageOffset":134956,"symbol":"-[NSInvocation invoke]","symbolLocation":428,"imageIndex":3},{"imageOffset":18820,"symbol":"+[SwizzlingForwarder callSelector:onObject:withArgs:]","symbolLocation":312,"imageIndex":6},{"imageOffset":192900,"symbol":"-[OneSignalAppDelegate oneSignalApplicationWillTerminate:]","symbolLocation":256,"imageIndex":7},{"imageOffset":1729676,"symbol":"INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION","symbolLocation":16,"imageIndex":5},{"imageOffset":1724220,"symbol":"__78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke","symbolLocation":416,"imageIndex":5},{"imageOffset":477716,"symbol":"__invoking___","symbolLocation":148,"imageIndex":3},{"imageOffset":134956,"symbol":"-[NSInvocation invoke]","symbolLocation":428,"imageIndex":3},{"imageOffset":18820,"symbol":"+[SwizzlingForwarder callSelector:onObject:withArgs:]","symbolLocation":312,"imageIndex":6},{"imageOffset":192900,"symbol":"-[OneSignalAppDelegate oneSignalApplicationWillTerminate:]","symbolLocation":256,"imageIndex":7},{"imageOffset":1729676,"symbol":"INSTABUG_SWIZZLER_EXECUTING_ORIGINAL_IMPLEMENTATION","symbolLocation":16,"imageIndex":5},{"imageOffset":1724220,"symbol":"__78-[IBGSwizzler newImplementatioApplicationWillTerminate:selector:swizzlerInfo:]_block_invoke","symbolLocation":416,"imageIndex":5},{"imageOffset":477716,"symbol":"__invoking___","symbolLocation":148,"imageIndex":3},{"imageOffset":134956,"symbol":"-[NSInvocation invoke]","symbolLocation":428,"imageIndex":3},{"imageOffset":18820,"symbol":"+[SwizzlingForwarder callSelector:onObject:withArgs:]","symbolLocation":312,"imageIndex":6},{"imageOffset":192900,"symbol":"-[OneSignalAppDelegate oneSignalApplicationWillTerminate:]","symbolLocation":256,"imageIndex":7}]},{"id":7169857,"name":"com.apple.uikit.eventfetch-thread","frames":[{"imageOffset":2888,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":8},{"imageOffset":77832,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":8},{"imageOffset":78408,"symbol":"mach_msg_overwrite","symbolLocation":388,"imageIndex":8},{"imageOffset":4236,"symbol":"mach_msg","symbolLocation":24,"imageIndex":8},{"imageOffset":503296,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":3},{"imageOffset":507972,"symbol":"__CFRunLoopRun","symbolLocation":1232,"imageIndex":3},{"imageOffset":528868,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":3},{"imageOffset":268312,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":212,"imageIndex":4},{"imageOffset":268032,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":64,"imageIndex":4},{"imageOffset":5077132,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":436,"imageIndex":9},{"imageOffset":371944,"symbol":"__NSThread__start__","symbolLocation":716,"imageIndex":4},{"imageOffset":5836,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":0},{"imageOffset":2980,"symbol":"thread_start","symbolLocation":8,"imageIndex":0}]},{"id":7169859,"frames":[{"imageOffset":2888,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":8},{"imageOffset":77832,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":8},{"imageOffset":78408,"symbol":"mach_msg_overwrite","symbolLocation":388,"imageIndex":8},{"imageOffset":4236,"symbol":"mach_msg","symbolLocation":24,"imageIndex":8},{"imageOffset":3543488,"symbol":"exception_server_thread","symbolLocation":188,"imageIndex":5},{"imageOffset":5836,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":0},{"imageOffset":2980,"symbol":"thread_start","symbolLocation":8,"imageIndex":0}]},{"id":7169861,"name":"com.apple.CoreMotion.MotionThread","frames":[{"imageOffset":2888,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":8},{"imageOffset":77832,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":8},{"imageOffset":78408,"symbol":"mach_msg_overwrite","symbolLocation":388,"imageIndex":8},{"imageOffset":4236,"symbol":"mach_msg","symbolLocation":24,"imageIndex":8},{"imageOffset":503296,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":3},{"imageOffset":507972,"symbol":"__CFRunLoopRun","symbolLocation":1232,"imageIndex":3},{"imageOffset":528868,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":3},{"imageOffset":806932,"symbol":"CFRunLoopRun","symbolLocation":64,"imageIndex":3},{"imageOffset":80644,"imageIndex":10},{"imageOffset":5836,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":0},{"imageOffset":2980,"symbol":"thread_start","symbolLocation":8,"imageIndex":0}]},{"id":7169908,"name":"com.apple.CFNetwork.CustomProtocols","frames":[{"imageOffset":2888,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":8},{"imageOffset":77832,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":8},{"imageOffset":78408,"symbol":"mach_msg_overwrite","symbolLocation":388,"imageIndex":8},{"imageOffset":4236,"symbol":"mach_msg","symbolLocation":24,"imageIndex":8},{"imageOffset":503296,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":3},{"imageOffset":507972,"symbol":"__CFRunLoopRun","symbolLocation":1232,"imageIndex":3},{"imageOffset":528868,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":3},{"imageOffset":2444204,"imageIndex":11},{"imageOffset":371944,"symbol":"__NSThread__start__","symbolLocation":716,"imageIndex":4},{"imageOffset":5836,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":0},{"imageOffset":2980,"symbol":"thread_start","symbolLocation":8,"imageIndex":0}]},{"id":7169934,"name":"com.apple.NSURLConnectionLoader","frames":[{"imageOffset":2888,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":8},{"imageOffset":77832,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":8},{"imageOffset":78408,"symbol":"mach_msg_overwrite","symbolLocation":388,"imageIndex":8},{"imageOffset":4236,"symbol":"mach_msg","symbolLocation":24,"imageIndex":8},{"imageOffset":503296,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":3},{"imageOffset":507972,"symbol":"__CFRunLoopRun","symbolLocation":1232,"imageIndex":3},{"imageOffset":528868,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":3},{"imageOffset":2444204,"imageIndex":11},{"imageOffset":371944,"symbol":"__NSThread__start__","symbolLocation":716,"imageIndex":4},{"imageOffset":5836,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":0},{"imageOffset":2980,"symbol":"thread_start","symbolLocation":8,"imageIndex":0}]},{"id":7169962,"name":"com.squareup.SocketRocket.NetworkThread","frames":[{"imageOffset":2888,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":8},{"imageOffset":77832,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":8},{"imageOffset":78408,"symbol":"mach_msg_overwrite","symbolLocation":388,"imageIndex":8},{"imageOffset":4236,"symbol":"mach_msg","symbolLocation":24,"imageIndex":8},{"imageOffset":503296,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":3},{"imageOffset":507972,"symbol":"__CFRunLoopRun","symbolLocation":1232,"imageIndex":3},{"imageOffset":528868,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":3},{"imageOffset":268312,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":212,"imageIndex":4},{"imageOffset":550096,"imageIndex":12},{"imageOffset":371944,"symbol":"__NSThread__start__","symbolLocation":716,"imageIndex":4},{"imageOffset":5836,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":0},{"imageOffset":2980,"symbol":"thread_start","symbolLocation":8,"imageIndex":0}]},{"id":7169965,"name":"com.apple.CFSocket.private","frames":[{"imageOffset":5804,"symbol":"__select","symbolLocation":8,"imageIndex":8},{"imageOffset":834004,"symbol":"__CFSocketManager","symbolLocation":636,"imageIndex":3},{"imageOffset":5836,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":0},{"imageOffset":2980,"symbol":"thread_start","symbolLocation":8,"imageIndex":0}]},{"id":7170483,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]},{"id":7171210,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]},{"id":7171212,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]},{"id":7171395,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]},{"id":7171616,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]},{"id":7171617,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]},{"id":7171618,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]},{"id":7171781,"name":"com.apple.SwiftUI.AsyncRenderer","frames":[{"imageOffset":2888,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":8},{"imageOffset":77832,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":8},{"imageOffset":78408,"symbol":"mach_msg_overwrite","symbolLocation":388,"imageIndex":8},{"imageOffset":4236,"symbol":"mach_msg","symbolLocation":24,"imageIndex":8},{"imageOffset":503296,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":3},{"imageOffset":507972,"symbol":"__CFRunLoopRun","symbolLocation":1232,"imageIndex":3},{"imageOffset":528868,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":3},{"imageOffset":268312,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":212,"imageIndex":4},{"imageOffset":267948,"symbol":"-[NSRunLoop(NSRunLoop) run]","symbolLocation":64,"imageIndex":4},{"imageOffset":709976,"imageIndex":13},{"imageOffset":702108,"imageIndex":13},{"imageOffset":371944,"symbol":"__NSThread__start__","symbolLocation":716,"imageIndex":4},{"imageOffset":5836,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":0},{"imageOffset":2980,"symbol":"thread_start","symbolLocation":8,"imageIndex":0}]},{"id":7171829,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]},{"id":7171839,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]},{"id":7171841,"queue":"com.apple.UIKit.KeyboardManagement","frames":[{"imageOffset":5760,"symbol":"__ulock_wait","symbolLocation":8,"imageIndex":8},{"imageOffset":18892,"symbol":"_dlock_wait","symbolLocation":56,"imageIndex":1},{"imageOffset":18304,"symbol":"_dispatch_thread_event_wait_slow","symbolLocation":56,"imageIndex":1},{"imageOffset":79968,"symbol":"__DISPATCH_WAIT_FOR_QUEUE__","symbolLocation":368,"imageIndex":1},{"imageOffset":78860,"symbol":"_dispatch_sync_f_slow","symbolLocation":144,"imageIndex":1},{"imageOffset":3813468,"symbol":"__37-[_UIRemoteKeyboards startConnection]_block_invoke_3","symbolLocation":156,"imageIndex":9},{"imageOffset":477716,"symbol":"__invoking___","symbolLocation":148,"imageIndex":3},{"imageOffset":134956,"symbol":"-[NSInvocation invoke]","symbolLocation":428,"imageIndex":3},{"imageOffset":658744,"symbol":"__NSXPCCONNECTION_IS_CALLING_OUT_TO_REPLY_BLOCK__","symbolLocation":16,"imageIndex":4},{"imageOffset":467708,"symbol":"-[NSXPCConnection _decodeAndInvokeReplyBlockWithEvent:sequence:replyInfo:]","symbolLocation":520,"imageIndex":4},{"imageOffset":6606660,"symbol":"__88-[NSXPCConnection _sendInvocation:orArguments:count:methodSignature:selector:withProxy:]_block_invoke_5","symbolLocation":188,"imageIndex":4},{"imageOffset":119780,"symbol":"_xpc_connection_reply_callout","symbolLocation":124,"imageIndex":2},{"imageOffset":66684,"symbol":"_xpc_connection_call_reply_async","symbolLocation":88,"imageIndex":2},{"imageOffset":16476,"symbol":"_dispatch_client_callout3","symbolLocation":20,"imageIndex":1},{"imageOffset":139096,"symbol":"_dispatch_mach_msg_async_reply_invoke","symbolLocation":344,"imageIndex":1},{"imageOffset":46444,"symbol":"_dispatch_lane_serial_drain","symbolLocation":376,"imageIndex":1},{"imageOffset":49684,"symbol":"_dispatch_lane_invoke","symbolLocation":436,"imageIndex":1},{"imageOffset":93712,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":652,"imageIndex":1},{"imageOffset":3576,"symbol":"_pthread_wqthread","symbolLocation":288,"imageIndex":0},{"imageOffset":2968,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":0}]},{"id":7171850,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]},{"id":7171851,"frames":[{"imageOffset":2960,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":0}]}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 8094875648,
    "size" : 49152,
    "uuid" : "e0674d94-1a29-36b9-a1f9-ca129f0cfc7e",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6932373504,
    "size" : 290816,
    "uuid" : "c663d847-b94f-3fb0-9254-32edbc55315e",
    "path" : "\/usr\/lib\/system\/libdispatch.dylib",
    "name" : "libdispatch.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 8095154176,
    "size" : 262144,
    "uuid" : "bf679bcd-7230-311b-a4da-1dc48d787abc",
    "path" : "\/usr\/lib\/system\/libxpc.dylib",
    "name" : "libxpc.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6810206208,
    "size" : 4083712,
    "uuid" : "42c5c917-0447-3995-b50f-de4d132c2435",
    "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/CoreFoundation",
    "name" : "CoreFoundation"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6714015744,
    "size" : 9744384,
    "uuid" : "aa92cd58-561a-3414-92f4-b4120298b39a",
    "path" : "\/System\/Library\/Frameworks\/Foundation.framework\/Foundation",
    "name" : "Foundation"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4487462912,
    "size" : 4472832,
    "uuid" : "adc409d8-76da-3bc8-916a-002e229a9449",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/119BC915-1BE0-411D-A682-BA6523133F5E\/xxxxxx.app\/Frameworks\/Instabug.framework\/Instabug",
    "name" : "Instabug"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4479860736,
    "size" : 81920,
    "uuid" : "59e57284-c820-361d-8ae0-f3241f3be390",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/119BC915-1BE0-411D-A682-BA6523133F5E\/xxxxxx.app\/Frameworks\/OneSignalCore.framework\/OneSignalCore",
    "name" : "OneSignalCore"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4480450560,
    "size" : 393216,
    "uuid" : "7cbc4ca6-7669-3442-bc2d-5dad6b031c22",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/119BC915-1BE0-411D-A682-BA6523133F5E\/xxxxxx.app\/Frameworks\/OneSignal.framework\/OneSignal",
    "name" : "OneSignal"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 7824093184,
    "size" : 225276,
    "uuid" : "d3eb8b56-7c22-3265-a985-a436bc8caf15",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6845390848,
    "size" : 24932352,
    "uuid" : "7b942fa4-cb76-3375-9972-f58c14492fb4",
    "path" : "\/System\/Library\/PrivateFrameworks\/UIKitCore.framework\/UIKitCore",
    "name" : "UIKitCore"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6998855680,
    "size" : 4063232,
    "uuid" : "1c7c3d6c-33e3-3cf7-9fdf-ffdd45d7d3f0",
    "path" : "\/System\/Library\/Frameworks\/CoreMotion.framework\/CoreMotion",
    "name" : "CoreMotion"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6828535808,
    "size" : 3956736,
    "uuid" : "35605de3-3723-335a-83d9-6f35f2989935",
    "path" : "\/System\/Library\/Frameworks\/CFNetwork.framework\/CFNetwork",
    "name" : "CFNetwork"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4483547136,
    "size" : 2654208,
    "uuid" : "946f9fbc-777a-3fc7-ac5a-a32556b19184",
    "path" : "\/private\/var\/containers\/Bundle\/Application\/119BC915-1BE0-411D-A682-BA6523133F5E\/xxxxxx.app\/Frameworks\/Intercom.framework\/Intercom",
    "name" : "Intercom"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6870323200,
    "size" : 25464832,
    "uuid" : "122e646e-6b17-3561-975f-c414c8dae3d3",
    "path" : "\/System\/Library\/Frameworks\/SwiftUI.framework\/SwiftUI",
    "name" : "SwiftUI"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  }
],
  "sharedCache" : {
  "base" : 6695895040,
  "size" : 2891382784,
  "uuid" : "681162e4-0210-378a-a537-cf5117165b68"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=1.2G resident=0K(0%) swapped_out_or_unallocated=1.2G(100%)\nWritable regions: Total=655.3M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=655.3M(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nAccelerate framework               256K        2 \nActivity Tracing                   256K        1 \nCG raster data                    4800K       55 \nColorSync                          176K       10 \nCoreAnimation                     3472K       96 \nCoreData                           128K        3 \nCoreData Object IDs               4112K        2 \nFoundation                          16K        1 \nImage IO                          5744K        6 \nKernel Alloc Once                   32K        1 \nMALLOC                           609.5M      385 \nMALLOC guard page                  192K       12 \nSQLite page cache                 2240K       35 \nSTACK GUARD                        336K       21 \nStack                             11.6M       21 \nVM_ALLOCATE                       12.4M        6 \n__AUTH                            4702K      631 \n__AUTH_CONST                      32.2M      840 \n__CTF                               756        1 \n__DATA                            19.2M      840 \n__DATA_CONST                      43.8M      845 \n__DATA_DIRTY                      3645K      686 \n__FONT_DATA                          4K        1 \n__LINKEDIT                       377.1M       12 \n__OBJC_CONST                      8610K      595 \n__OBJC_RO                         78.1M        1 \n__OBJC_RW                         2415K        1 \n__TEXT                           852.9M      869 \ndyld private memory                256K        1 \nlibnetwork                        1664K       24 \nmapped file                      370.3M      772 \nshared memory                     9312K       10 \n===========                     =======  ======= \nTOTAL                              2.4G     6786 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "queue" : "com.apple.main-thread"
  }
},
  "trialInfo" : {
  "rollouts" : [
    {
      "rolloutId" : "6112e3d2fc54bc3389840661",
      "factorPackIds" : {
        "SIRI_TEXT_TO_SPEECH" : "6349ee1ad5eaa940d3c32170"
      },
      "deploymentId" : 240000208
    },
    {
      "rolloutId" : "62868a738e8ae2385955687e",
      "factorPackIds" : {
        "SIRI_DICTATION_ASSETS" : "62868adbcec4674079196394"
      },
      "deploymentId" : 250000003
    }
  ],
  "experiments" : [
    {
      "treatmentId" : "890ab696-fe85-42d3-98fa-10d5ee58e1ef",
      "experimentId" : "620ebc346508065773aa3ef8",
      "deploymentId" : 400000031
    },
    {
      "treatmentId" : "a2c66376-6910-4142-b340-3476dd2ce1bf",
      "experimentId" : "621923057b59736391be1571",
      "deploymentId" : 400000011
    }
  ]
}
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.