일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Xcode
- view
- MacOS
- Archive
- SwiftUI
- error
- UIButton
- 웹뷰
- Session
- Apple
- geofencing
- FLUTTER
- Code
- Swift
- github
- 한글
- Git
- iOS16
- JPA
- stack
- appstore
- Notification
- rxswift
- mac
- window
- Realm
- darkmode
- Firebase
- 개발자
- IOS
- Today
- Total
EEYatHo 앱 깎는 이야기
Xcode Error ) Preview Crash (with. Tuist, Firebase ) 본문
Xcode Error ) Preview Crash (with. Tuist, Firebase )
EEYatHo 2023. 8. 7. 18:56개요
사내 프로젝트(UIKit) 에 SwiftUI 적용해보니, Preview 에서 Crash 발생..
응용 프로그램이 예기치 않게 종료되었습니다.
응용 프로그램을 다시 열려면 다시 열기를 클릭하십시오. 자세한 정보를 보고 Apple에 리포트를 보내려면 리포트를 클릭하십시오.
( 리포트 한 백번한듯.. )
원인 요약 ( + Solution )
- 원인 1.
Xcode 의 Swift Package Manager 이 아닌,
Tuist 의 Swift Package Manager 처럼. Package를 resolve해서 binary framework로 Firebase SDK를 사용함. - 원인 2.
FirebaseSDK 를 binary framework 로 사용해서,
Build Settings - Linking - Other Linker Flags 에 -ObjC 옵션이 추가됨.
Tip
-ObjC 옵션의 의미 : 컴파일 타임에 모든 옵씨 클래스와 카테고리를 적재함. (스태틱한 것도 다 적재해버려~~)
This flag causes the linker to load every object file in the library
that defines an Objective-C class or category.
이 옵션이 필요한 이유 : 옵씨의 특성상 static library 의 category method 들이 Link 되지 않는 이슈가 존재하기 때문.
자세한 설명이 있는 블로그 링크
- 원인 3.
UIKit 프로젝트에 SwiftUI 를 부분 사용해서,
AppDelegate.didFinishLaunchingWithOptions 에 Firebase init 코드가 들어가는 경우.
( @main 이 SwiftUI App 이면 괜찮았음.. )
FirebaseApp.configure()
1, 2, 3 조건을 충족할 때 Preview 에서 Crash 가 발생.
- Solution
- Tuist에 Xcode의 SPM을 사용하는 방법을 지원하므로, Xcode SPM을 사용한다.
( 역시 first party를 사용하는게 짱... )
- Tuist에 Xcode의 SPM을 사용하는 방법을 지원하므로, Xcode SPM을 사용한다.
문제 해결 과정
1. 사내 프로젝트에 SwiftUI 적용해보니, Preview 에서 Crash 발생..
2. 크래쉬 내역.. 봐도 감도 안잡힘 ㅜ
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------
Incident Identifier: FB598062-0079-498A-B7A2-8AB1ABDF88F6
CrashReporter Key: BC265A0B-D9F2-4846-13C5-D95CA9C7DECC
Hardware Model: MacBookPro18,1
Process: MyDemo [62663]
Path: /Users/*/Library/Developer/Xcode/UserData/Previews/Simulator Devices/FE19CEA7-307F-4810-983B-A1971AA9ABA8/data/Containers/Bundle/Application/17DB6D99-78B0-4363-BE1E-1840989969C8/MyDemo.app/MyDemo
Identifier: io.tuist.MyDemo
Version: 1.0 (1)
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd_sim [33467]
Coalition: com.apple.CoreSimulator.SimDevice.FE19CEA7-307F-4810-983B-A1971AA9ABA8 [26162]
Responsible Process: SimulatorTrampoline [3356]
Date/Time: 2023-08-07 15:22:49.2146 +0900
Launch Time: 2023-08-07 15:22:48.7801 +0900
OS Version: macOS 13.3.1 (22E261)
Release Type: User
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Triggered by Thread: 0
Last Exception Backtrace:
0 CoreFoundation 0x18040e7bc __exceptionPreprocess + 160
1 libobjc.A.dylib 0x180051144 objc_exception_throw + 56
2 CoreFoundation 0x18040e6d8 -[NSException initWithCoder:] + 0
3 MyDemo 0x102c46f78 +[FIRApp configure] + 108
4 MyDemo 0x102bde4cc AppDelegate.initialSetupPushInfo() + 600
5 MyDemo 0x102bdd7b4 AppDelegate.initialize() + 96 (AppDelegate.swift:56)
6 MyDemo 0x102bdd6a8 AppDelegate.application(_:didFinishLaunchingWithOptions:) + 232 (AppDelegate.swift:19)
7 MyDemo 0x102bdd880 @objc AppDelegate.application(_:didFinishLaunchingWithOptions:) + 188
8 UIKitCore 0x10c382e38 -[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] + 292
9 UIKitCore 0x10c384380 -[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] + 2776
10 UIKitCore 0x10c389040 -[UIApplication _runWithMainScene:transitionContext:completion:] + 856
11 UIKitCore 0x10baed4d0 -[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] + 148
12 UIKitCore 0x10c386008 -[UIApplication _compellApplicationLaunchToCompleteUnconditionally] + 44
13 PreviewsOSSupportUI 0x110cde030 -[UVAgentSceneEntryPoint _forceApplicationLaunchCompletion] + 36
14 PreviewsOSSupportUI 0x110cddf60 -[UVAgentSceneEntryPoint initWithScene:] + 216
15 UIKitCore 0x10b962e00 __66+[UIScene _sceneForFBSScene:create:withSession:connectionOptions:]_block_invoke_3 + 84
16 CoreFoundation 0x18035d908 __NSDICTIONARY_IS_CALLING_OUT_TO_A_BLOCK__ + 16
17 CoreFoundation 0x180480c98 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 208
18 UIKitCore 0x10b962888 +[UIScene _sceneForFBSScene:create:withSession:connectionOptions:] + 580
19 UIKitCore 0x10c3877f8 -[UIApplication _connectUISceneFromFBSScene:transitionContext:] + 884
20 UIKitCore 0x10c387c80 -[UIApplication workspace:didCreateScene:withTransitionContext:completion:] + 368
21 UIKitCore 0x10bef09bc -[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] + 260
22 FrontBoardServices 0x184ef7868 -[FBSScene _callOutQueue_agent_didCreateWithTransitionContext:completion:] + 316
23 FrontBoardServices 0x184f1df68 __92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.59 + 92
24 FrontBoardServices 0x184f03350 -[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] + 160
25 FrontBoardServices 0x184f1dbf0 __92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke + 296
26 libdispatch.dylib 0x180135768 _dispatch_client_callout + 16
27 libdispatch.dylib 0x1801396a4 _dispatch_block_invoke_direct + 376
28 FrontBoardServices 0x184f3d44c __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 44
29 FrontBoardServices 0x184f3d340 -[FBSSerialQueue _targetQueue_performNextIfPossible] + 176
30 FrontBoardServices 0x184f3d480 -[FBSSerialQueue _performNextFromRunLoopSource] + 24
31 CoreFoundation 0x18037318c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
32 CoreFoundation 0x1803730d4 __CFRunLoopDoSource0 + 172
33 CoreFoundation 0x180372844 __CFRunLoopDoSources0 + 232
34 CoreFoundation 0x18036ceb0 __CFRunLoopRun + 756
35 CoreFoundation 0x18036c7a4 CFRunLoopRunSpecific + 584
36 GraphicsServices 0x188ff7c98 GSEventRunModal + 160
37 UIKitCore 0x10c38637c -[UIApplication _run] + 868
38 UIKitCore 0x10c38a374 UIApplicationMain + 124
39 libswiftUIKit.dylib 0x103a58fd0 UIApplicationMain(_:_:_:_:) + 100
40 MyDemo 0x102bddf5c static UIApplicationDelegate.main() + 104
41 MyDemo 0x102bddee4 static AppDelegate.$main() + 44
42 MyDemo 0x102be0d34 main + 28
43 dyld_sim 0x1034c1fa0 start_sim + 20
44 dyld 0x1032a5f28 start + 2236
45 ??? 0x66d800000000000 ???
Kernel Triage:
VM - (arg = 0x0) pmap_enter retried due to resource shortage
VM - (arg = 0x0) pmap_enter retried due to resource shortage
VM - (arg = 0x0) pmap_enter retried due to resource shortage
VM - (arg = 0x0) pmap_enter retried due to resource shortage
VM - (arg = 0x0) pmap_enter retried due to resource shortage
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x1b0549fa8 __pthread_kill + 8
1 libsystem_pthread.dylib 0x1b059e12c pthread_kill + 256
2 libsystem_c.dylib 0x180129e28 abort + 124
3 libc++abi.dylib 0x18023c0c0 abort_message + 128
4 libc++abi.dylib 0x18022c964 demangling_terminate_handler() + 300
5 libobjc.A.dylib 0x180032c78 _objc_terminate() + 124
6 libc++abi.dylib 0x18023b570 std::__terminate(void (*)()) + 16
7 libc++abi.dylib 0x18023b518 std::terminate() + 52
8 libdispatch.dylib 0x18013577c _dispatch_client_callout + 36
9 libdispatch.dylib 0x1801396a4 _dispatch_block_invoke_direct + 376
10 FrontBoardServices 0x184f3d44c __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 44
11 FrontBoardServices 0x184f3d340 -[FBSSerialQueue _targetQueue_performNextIfPossible] + 176
12 FrontBoardServices 0x184f3d480 -[FBSSerialQueue _performNextFromRunLoopSource] + 24
13 CoreFoundation 0x18037318c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
14 CoreFoundation 0x1803730d4 __CFRunLoopDoSource0 + 172
15 CoreFoundation 0x180372844 __CFRunLoopDoSources0 + 232
16 CoreFoundation 0x18036ceb0 __CFRunLoopRun + 756
17 CoreFoundation 0x18036c7a4 CFRunLoopRunSpecific + 584
18 GraphicsServices 0x188ff7c98 GSEventRunModal + 160
19 UIKitCore 0x10c38637c -[UIApplication _run] + 868
20 UIKitCore 0x10c38a374 UIApplicationMain + 124
21 libswiftUIKit.dylib 0x103a58fd0 UIApplicationMain(_:_:_:_:) + 100
22 MyDemo 0x102bddf5c static UIApplicationDelegate.main() + 104
23 MyDemo 0x102bddee4 static AppDelegate.$main() + 44 (AppDelegate.swift:6)
24 MyDemo 0x102be0d34 main + 28
25 dyld_sim 0x1034c1fa0 start_sim + 20
26 dyld 0x1032a5f28 start + 2236
Thread 1:
0 libsystem_pthread.dylib 0x1b0599634 start_wqthread + 0
Thread 2:
0 libsystem_pthread.dylib 0x1b0599634 start_wqthread + 0
Thread 3:
0 libsystem_pthread.dylib 0x1b0599634 start_wqthread + 0
Thread 4:
0 libsystem_pthread.dylib 0x1b0599634 start_wqthread + 0
Thread 5:: com.apple.uikit.eventfetch-thread
0 libsystem_kernel.dylib 0x1b0542190 mach_msg2_trap + 8
1 libsystem_kernel.dylib 0x1b0553258 mach_msg2_internal + 76
2 libsystem_kernel.dylib 0x1b054a398 mach_msg_overwrite + 540
3 libsystem_kernel.dylib 0x1b0542500 mach_msg + 20
4 CoreFoundation 0x1803729c8 __CFRunLoopServiceMachPort + 156
5 CoreFoundation 0x18036d03c __CFRunLoopRun + 1152
6 CoreFoundation 0x18036c7a4 CFRunLoopRunSpecific + 584
7 Foundation 0x180bcf02c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208
8 Foundation 0x180bcf250 -[NSRunLoop(NSRunLoop) runUntilDate:] + 60
9 UIKitCore 0x10c42653c -[UIEventFetcher threadMain] + 424
10 Foundation 0x180bf4a10 __NSThread__start__ + 704
11 libsystem_pthread.dylib 0x1b059e428 _pthread_start + 116
12 libsystem_pthread.dylib 0x1b0599648 thread_start + 8
Thread 0 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
x4: 0x000000018023f031 x5: 0x000000016d224360 x6: 0x000000000000006e x7: 0x0000000000000000
x8: 0x000000010333c240 x9: 0x19b154baeb09e2c3 x10: 0x0000000000000200 x11: 0x000000000000000b
x12: 0x000000000000000b x13: 0x00000000001ff800 x14: 0x0000000000000010 x15: 0x00000000d0c13857
x16: 0x0000000000000148 x17: 0x00000000d0c13857 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x000000010333c240 x21: 0x0000000000000103 x22: 0x000000010333c320 x23: 0x0000000000000000
x24: 0xffffffff02000000 x25: 0x0000000000000001 x26: 0x0000000000000000 x27: 0x00000000211200d5
x28: 0x0000600001234010 fp: 0x000000016d2242d0 lr: 0x00000001b059e12c
sp: 0x000000016d2242b0 pc: 0x00000001b0549fa8 cpsr: 0x40001000
far: 0x000000010ca27ff0 esr: 0x56000080 Address size fault
Binary Images:
0x1032a0000 - 0x10332ffff dyld (*) <ac277a36-1808-327a-8761-cca585421212> /usr/lib/dyld
0x1034c0000 - 0x10350ffff dyld_sim (*) <d763ecdd-458a-3dc0-92d4-bf4f7a54bfbb> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim
0x102bd8000 - 0x102edffff io.tuist.MyDemo (1.0) <c18dc2a4-7d59-3d44-b9f5-6c58037f4787> /Users/*/Library/Developer/Xcode/UserData/Previews/Simulator Devices/FE19CEA7-307F-4810-983B-A1971AA9ABA8/data/Containers/Bundle/Application/17DB6D99-78B0-4363-BE1E-1840989969C8/MyDemo.app/MyDemo
0x1033d8000 - 0x103413fff com.apple.dt.PreviewsInjection (14.0) <68ac0741-a25a-3520-86da-f00331c8f023> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PreviewsInjection.framework/PreviewsInjection
0x103e7c000 - 0x104083fff com.apple.SafariServices (16.2) <f5e00d77-c08e-3790-8595-8a559c8cd459> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/SafariServices.framework/SafariServices
0x103888000 - 0x10395bfff com.apple.StoreKit (1.0) <021ada49-79db-3411-a509-bd3bb8da69db> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/StoreKit.framework/StoreKit
0x103290000 - 0x103293fff com.apple.UIKit (1.0) <8b154880-95fe-390f-ae82-1a3a3a640227> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UIKit.framework/UIKit
0x103458000 - 0x10345bfff io.tuist.MyDemoKit (1.0) <ef2afdaf-8e92-3959-b04b-61157e871039> /Users/*/Library/Developer/Xcode/DerivedData/MyDemo-esxaxvwzkxyfpqhasbnfxjfqbsed/Build/Intermediates.noindex/Previews/MyDemo/Products/Debug-iphonesimulator/MyDemoKit.framework/MyDemoKit
0x10346c000 - 0x10346ffff io.tuist.MyDemoUI (1.0) <8a1e253e-2414-30ad-a21a-02b14833cbb5> /Users/*/Library/Developer/Xcode/DerivedData/MyDemo-esxaxvwzkxyfpqhasbnfxjfqbsed/Build/Intermediates.noindex/Previews/MyDemo/Products/Debug-iphonesimulator/MyDemoUI.framework/MyDemoUI
0x108280000 - 0x109803fff com.apple.SwiftUI (4.2.11) <1bb9ceee-86d4-35a6-89c9-bd86a50e7f0f> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/SwiftUI.framework/SwiftUI
0x10a30c000 - 0x10ad3bfff com.apple.WebKit (8614) <b71891a7-717d-37ec-8e18-7ef3fccc7ca0> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/WebKit.framework/WebKit
0x103a34000 - 0x103a9bfff libswiftUIKit.dylib (*) <824e5d3b-d62e-3919-a9fc-a0d78999a629> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftUIKit.dylib
0x103730000 - 0x10378ffff com.apple.AuthenticationServices (12.0) <4c3e8217-c691-31fb-b121-2a129c16ffaa> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x103b88000 - 0x103bfffff com.apple.AuthenticationServicesCore (1.0) <26e1caba-8c27-3625-9fd2-c6bf0f110c36> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/AuthenticationServicesCore.framework/AuthenticationServicesCore
0x103c74000 - 0x103cc3fff com.apple.OnBoardingKit (1.0) <90d1ec08-83f4-3f70-aee0-7abe41c86385> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x104820000 - 0x10492ffff com.apple.preferences-framework (1) <1f3c0f11-f05c-316f-8fe8-da7828ceac36> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x103550000 - 0x103607fff com.apple.WebBookmarks (8614) <62f06696-9010-3b4f-8fce-103cc888db6b> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x10580c000 - 0x105aeffff com.apple.ContactsUI (1.0.0) <f7d1e40c-7f39-32fd-8317-c10f440ad95c> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x104aa0000 - 0x104dd7fff com.apple.PencilKit (1.0) <b3b73c84-1c6c-391f-893d-97d2666709e9> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PencilKit.framework/PencilKit
0x105168000 - 0x10526ffff com.apple.mobilesafari.framework (16.2) <05048183-4bfb-30d1-a806-032363891dfa> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/MobileSafari.framework/MobileSafari
0x104344000 - 0x104517fff com.apple.Safari.Shared.UI (8614) <e3e5bbf4-5894-36a4-b1e2-902828c6ba52> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI
0x1036cc000 - 0x1036effff com.apple.SafariFoundation (8614) <7901d09a-ede8-3cda-a20f-2babcc1feb98> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x106e60000 - 0x1071dbfff com.apple.MediaPlayer (1.0) <d3a4bd8c-83fa-3ffc-abfc-59f584da14e7> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x10762c000 - 0x1078e3fff com.apple.MapKit (1.0) <a62c40a8-177c-3845-ba91-669d7e5f71a9> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MapKit.framework/MapKit
0x10ec00000 - 0x10ff57fff com.apple.JavaScriptCore (8614) <053bf96b-3e2b-3dc0-91c1-3c425601b7d7> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x10382c000 - 0x10384bfff com.apple.WebUI (1.0) <ca5e868b-c03f-37bb-9e3d-82aa33aa4b06> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x105ee4000 - 0x105fa3fff com.apple.Safari.Core (8614) <31b0f142-b2a2-3b90-9067-18bcd9646dd2> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x103d34000 - 0x103da7fff com.apple.AuthKitUI (1.0) <cfa1e26d-0465-3f0e-99c2-9d8a19170d80> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x1053d8000 - 0x105407fff com.apple.AppSSO (1.0) <45693d21-8734-3fbe-b625-ff857cb0d1fb> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
0x105444000 - 0x105467fff com.apple.LocalAuthenticationPrivateUI (1.0) <abfda801-f055-39aa-becc-73002bd883c1> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI
0x1060ac000 - 0x106147fff com.apple.RemoteUI (1.0) <dcb572d1-b636-3b54-9d44-604a9e9fd1da> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x10474c000 - 0x104793fff com.apple.DocumentManager (1.0) <c9599edd-0775-3c1f-b7cb-869b06d28d09> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x10b918000 - 0x10cfd3fff com.apple.UIKitCore (1.0) <3f2e4277-d1ab-3c9c-8ca1-14c5ef9dbfc8> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1054a0000 - 0x10558ffff com.apple.ShareSheet (1853) <fae39dc2-ee5f-3aa6-8543-202a5f35b83e> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x106468000 - 0x1064f3fff com.apple.PrintKitUI (1.0) <05c6d3a7-3b8b-3a8b-bf3e-c4e84dd5432b> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PrintKitUI.framework/PrintKitUI
0x107c24000 - 0x107db7fff com.apple.WebKitLegacy (8614) <978ce30a-2d27-3351-b0a9-1cd09ea6c86f> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1177b0000 - 0x119cdbfff com.apple.WebCore (8614) <36e6cc90-75d3-306f-99ee-e3cdfdad8762> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1065a4000 - 0x1068fffff libANGLE-shared.dylib (*) <edc9428d-dde1-3194-9982-4d011f19a646> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libANGLE-shared.dylib
0x1057a8000 - 0x1057e3fff com.apple.WebGPU (8614) <ae0d6d30-af7e-3cd2-b839-2b4e9970ca8b> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebGPU.framework/WebGPU
0x1119d8000 - 0x11214ffff libwebrtc.dylib (*) <0e0f0eff-592b-30a4-9d36-141c73af8689> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1061fc000 - 0x1062dffff com.apple.PDFKit (1.0) <7a8f4306-9635-3a84-ab0b-a3b31fe3c51f> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PDFKit.framework/PDFKit
0x107f6c000 - 0x108033fff com.apple.CorePDF (5.0) <42be2f5d-976a-39b8-bba4-5d5186731715> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x106ce8000 - 0x106d73fff com.apple.LiftUI (1.0) <57892d57-2599-3205-8082-53c46742d390> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LiftUI.framework/LiftUI
0x103278000 - 0x10327bfff libswiftWebKit.dylib (*) <73bebae1-764e-32cb-b78c-34c92c0bd8d6> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftWebKit.dylib
0x103480000 - 0x103493fff com.apple.RecapPerformanceTesting (17) <e2780ffb-0e1f-37f5-9d3e-7283f91426cf> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RecapPerformanceTesting.framework/RecapPerformanceTesting
0x10574c000 - 0x10575ffff com.apple.settingsandcoreapps.SettingsFoundation (1.0) <74582e4b-e720-33c9-991b-931388b25e9c> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x110d60000 - 0x110f9bfff com.apple.Safari.Shared (8614) <0b9762c8-5d9d-36a1-beec-044d6ddddadd> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x1056e4000 - 0x10570ffff com.apple.AppSupportUI (1.0) <7d72100a-8001-395c-a5f6-066d645b3f27> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x103e4c000 - 0x103e5bfff com.apple.PersonaUI (1.0) <b05972a4-845b-39cf-bb58-b993e87222ac> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x106b1c000 - 0x106b9bfff com.apple.Contacts.ContactsUICore (1.0) <e41574f3-5e6b-38c4-90d9-b74042ca6532> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x10ea60000 - 0x10eaa7fff com.apple.TemplateKit (1.0) <5ea14ba5-5118-3651-9436-a13b5b2d94f9> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit
0x1063e4000 - 0x1063fffff com.apple.MaterialKit (1.0) <365dc0cb-598e-32ac-af49-e0096279f21b> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x106c74000 - 0x106c8ffff com.apple.MetalKit (154) <38b25309-a406-33c0-8ab1-1c749e42d73d> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalKit.framework/MetalKit
0x106dec000 - 0x106e13fff com.apple.BaseBoardUI (617.14) <60a32761-9d75-3e03-b655-4daae16590bf> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x1108dc000 - 0x1109d3fff com.apple.LinkPresentation (212) <d85151af-ceb1-3f29-bb7e-087d580c2976> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x110434000 - 0x110593fff com.apple.AVKit (1.0) <87f1c176-5b56-34a5-a642-9678ece06279> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVKit.framework/AVKit
0x1080e0000 - 0x108143fff com.apple.Pegasus (1.0) <138a7c8a-6b20-3ac7-abbb-6f018814bdc8> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x105784000 - 0x105787fff com.apple.ParsecSubscriptionServiceSupport (1.0) <28f21448-03bf-30b4-982a-fcb231107f0f> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x110764000 - 0x110807fff com.apple.AppStoreComponents (1.0) <d945d5f5-1452-3a73-bae3-2005de394d08> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppStoreComponents.framework/AppStoreComponents
0x110b3c000 - 0x110bebfff com.apple.VideoSubscriberAccount.VideoSubscriberAccountFramework (1.0) <dce43081-ae6b-3aec-afb8-d777ad83cc39> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x111204000 - 0x1114c7fff com.apple.JetEngine (1.0) <bfdc4d31-8e32-36d2-933b-2362cd5588e3> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/JetEngine.framework/JetEngine
0x1123dc000 - 0x1124a7fff com.apple.JetUI (1.0) <4a528e69-6f85-3e66-bf16-e45d426d2043> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/JetUI.framework/JetUI
0x10eb0c000 - 0x10eb97fff com.apple.-JetEngine-SwiftUI (1.0) <27c06d77-8a7c-3430-aceb-1e8671778995> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/_JetEngine_SwiftUI.framework/_JetEngine_SwiftUI
0x106434000 - 0x10643ffff com.apple.AppStoreOverlays (1.0) <881539c9-eb42-3d8f-9574-967682358603> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays
0x111610000 - 0x11177bfff com.apple.chronokit (1.0) <7a9f045f-5e8e-3d65-9f54-c345dd0d786b> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ChronoKit.framework/ChronoKit
0x1128d4000 - 0x1129effff com.apple.widgetkit (1.0) <28a330f7-e4b4-34f4-9f72-740b4a24586e> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/WidgetKit.framework/WidgetKit
0x110cdc000 - 0x110cf7fff com.apple.dt.PreviewsOSSupportUI (14.0) <cd57d193-450a-34f3-8164-3e65f4323be9> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PreviewsOSSupportUI.framework/PreviewsOSSupportUI
0x108208000 - 0x108233fff com.apple.dt.PreviewsServicesUI (14.0) <2969e637-6fc3-3a62-a1f6-9e5870d2ac80> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PreviewsServicesUI.framework/PreviewsServicesUI
0x11191c000 - 0x111943fff com.apple.chronouiservices (1.0) <ee605f7e-7a18-3fe3-951a-c0e643447809> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ChronoUIServices.framework/ChronoUIServices
0x111854000 - 0x1118abfff com.apple.internal.ActivityUIServices (1.0) <47526d77-2dbf-39c9-81d8-8ca3ca26338d> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ActivityUIServices.framework/ActivityUIServices
0x112678000 - 0x1126bbfff com.apple.PlatterKit (1.0) <c3fde66d-0f65-3f90-85db-85cebff37aeb> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PlatterKit.framework/PlatterKit
0x111984000 - 0x11199bfff libswiftExtensionKit.dylib (*) <4064cd8e-11c3-39f4-bd8b-ce33c949fc8d> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift/libswiftExtensionKit.dylib
0x1125bc000 - 0x1125d3fff com.apple.ExtensionKit (97) <6c72df7b-75ff-3fa2-965d-44ad30b70690> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ExtensionKit.framework/ExtensionKit
0x112720000 - 0x1127b7fff com.apple.BacklightServicesHost (1.0) <9908f9fb-d6e3-3267-b426-1830cfb8ed0a> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BacklightServicesHost.framework/BacklightServicesHost
0x106e4c000 - 0x106e57fff libobjc-trampolines.dylib (*) <16ee454c-d2a0-37be-a3fb-576c1a143ac4> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc-trampolines.dylib
0x112604000 - 0x112627fff com.apple.AccessibilitySettingsLoader (1.0) <e317c623-41b0-387c-afb5-c8f8dafa24c7> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x114dac000 - 0x114ec3fff com.apple.UIKit.axbundle (1.0.0) <51dc158f-c331-3ef1-b071-acd5882aba72> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/UIKit.axbundle/UIKit
0x114a28000 - 0x114ac7fff com.apple.accessibility.AccessibilityUIUtilities (1.0) <90550aac-064a-31d3-83ba-fc97dbdadc35> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
0x11259c000 - 0x11259ffff com.apple.accessibility.SpeakTypingServices (1.0) <bb7af520-e7cc-3559-8f1f-5732f2bc0666> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpeakTypingServices.framework/SpeakTypingServices
0x1147c0000 - 0x1147cffff com.apple.AXFrontBoardUtils (1.0) <1678673d-bdff-3e61-8364-d8d58760883f> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXFrontBoardUtils.framework/AXFrontBoardUtils
0x114b68000 - 0x114bcffff com.apple.DataDetectorsUI (3.0) <6a3567c4-be39-349d-bc7b-b6c76f18e61d> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
0x1147e8000 - 0x1148cbfff com.apple.UIAccessibility (1.0.0) <d8364251-157a-3060-8bed-a285104e7976> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIAccessibility.framework/UIAccessibility
0x115a0c000 - 0x115c2bfff com.apple.eventkitui (1.0) <66f3472c-57b2-3445-9ba7-d43e337b849c> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/EventKitUI.framework/EventKitUI
0x114c60000 - 0x114cbffff com.apple.CalendarUIKit (1.0) <a246e538-cfa1-31a3-b64a-27655ab3bc7b> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit
0x115ed0000 - 0x116177fff SwiftUIView.1.preview-thunk.dylib (*) <cf1e92a3-f996-3751-81ab-1c244d6d6a2e> /Users/*/Library/Developer/Xcode/DerivedData/MyDemo-esxaxvwzkxyfpqhasbnfxjfqbsed/Build/Intermediates.noindex/Previews/MyDemo/Intermediates.noindex/MyDemo.build/Debug-iphonesimulator/MyDemo.build/Objects-normal/arm64/SwiftUIView.1.preview-thunk.dylib
0x1b0541000 - 0x1b0578fe7 libsystem_kernel.dylib (*) <c83d7f56-8483-3297-9cf0-48ef4f42047e> /usr/lib/system/libsystem_kernel.dylib
0x1b0597000 - 0x1b05a3ff7 libsystem_pthread.dylib (*) <73f649ed-142d-3aad-b3af-3fe33548b725> /usr/lib/system/libsystem_pthread.dylib
0x1800b5000 - 0x180131ff3 libsystem_c.dylib (*) <809fd1a9-98ea-308b-82ad-ec137230577a> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_c.dylib
0x180228000 - 0x180241ffb libc++abi.dylib (*) <f125b535-94ac-34d8-b81b-e9f4b59004fc> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++abi.dylib
0x18002c000 - 0x180060d9f libobjc.A.dylib (*) <2140ae27-11dd-398f-b65a-ad86245d6cc8> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc.A.dylib
0x180132000 - 0x180178fff libdispatch.dylib (*) <75a8e72d-f60e-33db-9798-e4f60f5c9226> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdispatch.dylib
0x184ef0000 - 0x184f84fff com.apple.FrontBoardServices (812.12) <ec6237da-fa1b-3b51-8aee-bac48e05ac89> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1802ed000 - 0x180699fff com.apple.CoreFoundation (6.9) <9b810641-e5e7-3950-a3f7-25ce1ede4d7a> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x188ff4000 - 0x188ffcfff com.apple.GraphicsServices (1.0) <3340e7ba-7ef4-3baf-b4b8-28b2e06fe6e6> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x180710000 - 0x180fc4fff com.apple.Foundation (6.9) <4a53f446-37df-36ed-aaf0-242bf3845fc0> /Applications/Xcode14.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Foundation.framework/Foundation
0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
EOF
-----------
Full Report
-----------
{"app_name":"MyDemo","timestamp":"2023-08-07 15:22:50.00 +0900","app_version":"1.0","slice_uuid":"c18dc2a4-7d59-3d44-b9f5-6c58037f4787","build_version":"1","platform":7,"bundleID":"io.tuist.MyDemo","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 13.3.1 (22E261)","roots_installed":0,"name":"MyDemo","incident_id":"FB598062-0079-498A-B7A2-8AB1ABDF88F6"}
{
"uptime" : 230000,
"procRole" : "Foreground",
"version" : 2,
"userID" : 502,
"deployVersion" : 210,
"modelCode" : "MacBookPro18,1",
"coalitionID" : 26162,
"osVersion" : {
"train" : "macOS 13.3.1",
"build" : "22E261",
"releaseType" : "User"
},
"captureTime" : "2023-08-07 15:22:49.2146 +0900",
"incident" : "FB598062-0079-498A-B7A2-8AB1ABDF88F6",
"pid" : 62663,
"translated" : false,
"cpuType" : "ARM-64",
"roots_installed" : 0,
"bug_type" : "309",
"procLaunch" : "2023-08-07 15:22:48.7801 +0900",
"procStartAbsTime" : 5626522566196,
"procExitAbsTime" : 5626532886461,
"procName" : "MyDemo",
"procPath" : "\/Users\/*\/Library\/Developer\/Xcode\/UserData\/Previews\/Simulator Devices\/FE19CEA7-307F-4810-983B-A1971AA9ABA8\/data\/Containers\/Bundle\/Application\/17DB6D99-78B0-4363-BE1E-1840989969C8\/MyDemo.app\/MyDemo",
"bundleInfo" : {"CFBundleShortVersionString":"1.0","CFBundleVersion":"1","CFBundleIdentifier":"io.tuist.MyDemo"},
"storeInfo" : {"deviceIdentifierForVendor":"163634DB-B6B1-57D7-888E-8625CB9411E7","thirdParty":true},
"parentProc" : "launchd_sim",
"parentPid" : 33467,
"coalitionName" : "com.apple.CoreSimulator.SimDevice.FE19CEA7-307F-4810-983B-A1971AA9ABA8",
"crashReporterKey" : "BC265A0B-D9F2-4846-13C5-D95CA9C7DECC",
"responsiblePid" : 3356,
"responsibleProc" : "SimulatorTrampoline",
"codeSigningID" : "io.tuist.MyDemo",
"codeSigningTeamID" : "",
"codeSigningFlags" : 570425861,
"codeSigningValidationCategory" : 10,
"codeSigningTrustLevel" : 0,
"wakeTime" : 19361,
"sleepWakeUUID" : "EAEE8C38-6D0F-418F-9722-83F3F6AD3C2E",
"sip" : "enabled",
"exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"},
"ktriageinfo" : "VM - (arg = 0x0) pmap_enter retried due to resource shortage\nVM - (arg = 0x0) pmap_enter retried due to resource shortage\nVM - (arg = 0x0) pmap_enter retried due to resource shortage\nVM - (arg = 0x0) pmap_enter retried due to resource shortage\nVM - (arg = 0x0) pmap_enter retried due to resource shortage\n",
"asiBacktraces" : ["0 CoreFoundation 0x000000018040e7c8 __exceptionPreprocess + 172\n1 libobjc.A.dylib 0x0000000180051144 objc_exception_throw + 56\n2 CoreFoundation 0x000000018040e6d8 -[NSException initWithCoder:] + 0\n3 MyDemo 0x0000000102c46f78 +[FIRApp configure] + 108\n4 MyDemo 0x0000000102bde4cc $s6MyDemo11AppDelegateC20initialSetupPushInfo33_B343917E1B77A0CA9CFD71079D8B2C49LLyyF + 600\n5 MyDemo 0x0000000102bdd7b4 $s6MyDemo11AppDelegateC10initialize33_B343917E1B77A0CA9CFD71079D8B2C49LLyyF + 96\n6 MyDemo 0x0000000102bdd6a8 $s6MyDemo11AppDelegateC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF + 232\n7 MyDemo 0x0000000102bdd880 $s6MyDemo11AppDelegateC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtFTo + 188\n8 UIKitCore 0x000000010c382e38 -[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] + 292\n9 UIKitCore 0x000000010c384380 -[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] + 2776\n10 UIKitCore 0x000000010c389040 -[UIApplication _runWithMainScene:transitionContext:completion:] + 856\n11 UIKitCore 0x000000010baed4d0 -[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] + 148\n12 UIKitCore 0x000000010c386008 -[UIApplication _compellApplicationLaunchToCompleteUnconditionally] + 44\n13 PreviewsOSSupportUI 0x0000000110cde030 -[UVAgentSceneEntryPoint _forceApplicationLaunchCompletion] + 36\n14 PreviewsOSSupportUI 0x0000000110cddf60 -[UVAgentSceneEntryPoint initWithScene:] + 216\n15 UIKitCore 0x000000010b962e00 __66+[UIScene _sceneForFBSScene:create:withSession:connectionOptions:]_block_invoke_3 + 84\n16 CoreFoundation 0x000000018035d908 __NSDICTIONARY_IS_CALLING_OUT_TO_A_BLOCK__ + 16\n17 CoreFoundation 0x0000000180480c98 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 208\n18 UIKitCore 0x000000010b962888 +[UIScene _sceneForFBSScene:create:withSession:connectionOptions:] + 580\n19 UIKitCore 0x000000010c3877f8 -[UIApplication _connectUISceneFromFBSScene:transitionContext:] + 884\n20 UIKitCore 0x000000010c387c80 -[UIApplication workspace:didCreateScene:withTransitionContext:completion:] + 368\n21 UIKitCore 0x000000010bef09bc -[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] + 260\n22 FrontBoardServices 0x0000000184ef7868 -[FBSScene _callOutQueue_agent_didCreateWithTransitionContext:completion:] + 316\n23 FrontBoardServices 0x0000000184f1df68 __92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.59 + 92\n24 FrontBoardServices 0x0000000184f03350 -[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] + 160\n25 FrontBoardServices 0x0000000184f1dbf0 __92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke + 296\n26 libdispatch.dylib 0x0000000180135768 _dispatch_client_callout + 16\n27 libdispatch.dylib 0x00000001801396a4 _dispatch_block_invoke_direct + 376\n28 FrontBoardServices 0x0000000184f3d44c __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 44\n29 FrontBoardServices 0x0000000184f3d340 -[FBSSerialQueue _targetQueue_performNextIfPossible] + 176\n30 FrontBoardServices 0x0000000184f3d480 -[FBSSerialQueue _performNextFromRunLoopSource] + 24\n31 CoreFoundation 0x000000018037318c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24\n32 CoreFoundation 0x00000001803730d4 __CFRunLoopDoSource0 + 172\n33 CoreFoundation 0x0000000180372844 __CFRunLoopDoSources0 + 232\n34 CoreFoundation 0x000000018036ceb0 __CFRunLoopRun + 756\n35 CoreFoundation 0x000000018036c7a4 CFRunLoopRunSpecific + 584\n36 GraphicsServices 0x0000000188ff7c98 GSEventRunModal + 160\n37 UIKitCore 0x000000010c38637c -[UIApplication _run] + 868\n38 UIKitCore 0x000000010c38a374 UIApplicationMain + 124\n39 libswiftUIKit.dylib 0x0000000103a58fd0 $s5UIKit17UIApplicationMainys5Int32VAD_SpySpys4Int8VGGSgSSSgAJtF + 100\n40 MyDemo 0x0000000102bddf5c $sSo21UIApplicationDelegateP5UIKitE4mainyyFZ + 104\n41 MyDemo 0x0000000102bddee4 $s6MyDemo11AppDelegateC5$mainyyFZ + 44\n42 MyDemo 0x0000000102be0d34 main + 28\n43 dyld 0x00000001034c1fa0 start_sim + 20\n44 ??? 0x00000001032a5f28 0x0 + 4348075816\n45 ??? 0x066d800000000000 0x0 + 463167074177384448"],
"extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":29200,"task_for_pid":253},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
"lastExceptionBacktrace" : [{"imageOffset":1185724,"symbol":"__exceptionPreprocess","symbolLocation":160,"imageIndex":92},{"imageOffset":151876,"symbol":"objc_exception_throw","symbolLocation":56,"imageIndex":89},{"imageOffset":1185496,"symbol":"-[NSException initWithCoder:]","symbolLocation":0,"imageIndex":92},{"imageOffset":454520,"symbol":"+[FIRApp configure]","symbolLocation":108,"imageIndex":2},{"imageOffset":25804,"sourceFile":"AppDelegate.swift","symbol":"AppDelegate.initialSetupPushInfo()","symbolLocation":600,"imageIndex":2},{"imageOffset":22452,"sourceLine":56,"sourceFile":"AppDelegate.swift","symbol":"AppDelegate.initialize()","imageIndex":2,"symbolLocation":96},{"imageOffset":22184,"sourceLine":19,"sourceFile":"AppDelegate.swift","symbol":"AppDelegate.application(_:didFinishLaunchingWithOptions:)","imageIndex":2,"symbolLocation":232},{"imageOffset":22656,"sourceFile":"<compiler-generated>","symbol":"@objc AppDelegate.application(_:didFinishLaunchingWithOptions:)","symbolLocation":188,"imageIndex":2},{"imageOffset":10923576,"symbol":"-[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:]","symbolLocation":292,"imageIndex":32},{"imageOffset":10929024,"symbol":"-[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:]","symbolLocation":2776,"imageIndex":32},{"imageOffset":10948672,"symbol":"-[UIApplication _runWithMainScene:transitionContext:completion:]","symbolLocation":856,"imageIndex":32},{"imageOffset":1922256,"symbol":"-[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:]","symbolLocation":148,"imageIndex":32},{"imageOffset":10936328,"symbol":"-[UIApplication _compellApplicationLaunchToCompleteUnconditionally]","symbolLocation":44,"imageIndex":32},{"imageOffset":8240,"symbol":"-[UVAgentSceneEntryPoint _forceApplicationLaunchCompletion]","symbolLocation":36,"imageIndex":66},{"imageOffset":8032,"symbol":"-[UVAgentSceneEntryPoint initWithScene:]","symbolLocation":216,"imageIndex":66},{"imageOffset":306688,"symbol":"__66+[UIScene _sceneForFBSScene:create:withSession:connectionOptions:]_block_invoke_3","symbolLocation":84,"imageIndex":32},{"imageOffset":461064,"symbol":"__NSDICTIONARY_IS_CALLING_OUT_TO_A_BLOCK__","symbolLocation":16,"imageIndex":92},{"imageOffset":1653912,"symbol":"-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]","symbolLocation":208,"imageIndex":92},{"imageOffset":305288,"symbol":"+[UIScene _sceneForFBSScene:create:withSession:connectionOptions:]","symbolLocation":580,"imageIndex":32},{"imageOffset":10942456,"symbol":"-[UIApplication _connectUISceneFromFBSScene:transitionContext:]","symbolLocation":884,"imageIndex":32},{"imageOffset":10943616,"symbol":"-[UIApplication workspace:didCreateScene:withTransitionContext:completion:]","symbolLocation":368,"imageIndex":32},{"imageOffset":6130108,"symbol":"-[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:]","symbolLocation":260,"imageIndex":32},{"imageOffset":30824,"symbol":"-[FBSScene _callOutQueue_agent_didCreateWithTransitionContext:completion:]","symbolLocation":316,"imageIndex":91},{"imageOffset":188264,"symbol":"__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke.59","symbolLocation":92,"imageIndex":91},{"imageOffset":78672,"symbol":"-[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:]","symbolLocation":160,"imageIndex":91},{"imageOffset":187376,"symbol":"__92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:completion:]_block_invoke","symbolLocation":296,"imageIndex":91},{"imageOffset":14184,"symbol":"_dispatch_client_callout","symbolLocation":16,"imageIndex":90},{"imageOffset":30372,"symbol":"_dispatch_block_invoke_direct","symbolLocation":376,"imageIndex":90},{"imageOffset":316492,"symbol":"__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__","symbolLocation":44,"imageIndex":91},{"imageOffset":316224,"symbol":"-[FBSSerialQueue _targetQueue_performNextIfPossible]","symbolLocation":176,"imageIndex":91},{"imageOffset":316544,"symbol":"-[FBSSerialQueue _performNextFromRunLoopSource]","symbolLocation":24,"imageIndex":91},{"imageOffset":549260,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__","symbolLocation":24,"imageIndex":92},{"imageOffset":549076,"symbol":"__CFRunLoopDoSource0","symbolLocation":172,"imageIndex":92},{"imageOffset":546884,"symbol":"__CFRunLoopDoSources0","symbolLocation":232,"imageIndex":92},{"imageOffset":523952,"symbol":"__CFRunLoopRun","symbolLocation":756,"imageIndex":92},{"imageOffset":522148,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":92},{"imageOffset":15512,"symbol":"GSEventRunModal","symbolLocation":160,"imageIndex":93},{"imageOffset":10937212,"symbol":"-[UIApplication _run]","symbolLocation":868,"imageIndex":32},{"imageOffset":10953588,"symbol":"UIApplicationMain","symbolLocation":124,"imageIndex":32},{"imageOffset":151504,"symbol":"UIApplicationMain(_:_:_:_:)","symbolLocation":100,"imageIndex":11},{"imageOffset":24412,"sourceFile":"<compiler-generated>","symbol":"static UIApplicationDelegate.main()","symbolLocation":104,"imageIndex":2},{"imageOffset":24292,"sourceFile":"<compiler-generated>","symbol":"static AppDelegate.$main()","symbolLocation":44,"imageIndex":2},{"imageOffset":36148,"sourceFile":"<compiler-generated>","symbol":"main","symbolLocation":28,"imageIndex":2},{"imageOffset":8096,"symbol":"start_sim","symbolLocation":20,"imageIndex":1},{"imageOffset":24360,"symbol":"start","symbolLocation":2236,"imageIndex":0},{"imageOffset":463167074177384448,"imageIndex":95}],
"faultingThread" : 0,
"threads" : [{"triggered":true,"id":9791479,"threadState":{"x":[{"value":0},{"value":0},{"value":0},{"value":0},{"value":6444806193},{"value":6125929312},{"value":110},{"value":0},{"value":4348691008,"symbolLocation":0,"symbol":"_main_thread"},{"value":1851354083609928387},{"value":512},{"value":11},{"value":11},{"value":2095104},{"value":16},{"value":3502323799},{"value":328},{"value":3502323799},{"value":0},{"value":6},{"value":4348691008,"symbolLocation":0,"symbol":"_main_thread"},{"value":259},{"value":4348691232,"symbolLocation":224,"symbol":"_main_thread"},{"value":0},{"value":18446744069448138752},{"value":1},{"value":0},{"value":554827989},{"value":105553135353872}],"flavor":"ARM_THREAD_STATE64","lr":{"value":7253647660},"cpsr":{"value":1073745920},"fp":{"value":6125929168},"sp":{"value":6125929136},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":7253303208,"matchesCrashFrame":1},"far":{"value":4506943472}},"queue":"com.apple.main-thread","frames":[{"imageOffset":36776,"symbol":"__pthread_kill","symbolLocation":8,"imageIndex":85},{"imageOffset":28972,"symbol":"pthread_kill","symbolLocation":256,"imageIndex":86},{"imageOffset":478760,"symbol":"abort","symbolLocation":124,"imageIndex":87},{"imageOffset":82112,"symbol":"abort_message","symbolLocation":128,"imageIndex":88},{"imageOffset":18788,"symbol":"demangling_terminate_handler()","symbolLocation":300,"imageIndex":88},{"imageOffset":27768,"symbol":"_objc_terminate()","symbolLocation":124,"imageIndex":89},{"imageOffset":79216,"symbol":"std::__terminate(void (*)())","symbolLocation":16,"imageIndex":88},{"imageOffset":79128,"symbol":"std::terminate()","symbolLocation":52,"imageIndex":88},{"imageOffset":14204,"symbol":"_dispatch_client_callout","symbolLocation":36,"imageIndex":90},{"imageOffset":30372,"symbol":"_dispatch_block_invoke_direct","symbolLocation":376,"imageIndex":90},{"imageOffset":316492,"symbol":"__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__","symbolLocation":44,"imageIndex":91},{"imageOffset":316224,"symbol":"-[FBSSerialQueue _targetQueue_performNextIfPossible]","symbolLocation":176,"imageIndex":91},{"imageOffset":316544,"symbol":"-[FBSSerialQueue _performNextFromRunLoopSource]","symbolLocation":24,"imageIndex":91},{"imageOffset":549260,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__","symbolLocation":24,"imageIndex":92},{"imageOffset":549076,"symbol":"__CFRunLoopDoSource0","symbolLocation":172,"imageIndex":92},{"imageOffset":546884,"symbol":"__CFRunLoopDoSources0","symbolLocation":232,"imageIndex":92},{"imageOffset":523952,"symbol":"__CFRunLoopRun","symbolLocation":756,"imageIndex":92},{"imageOffset":522148,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":92},{"imageOffset":15512,"symbol":"GSEventRunModal","symbolLocation":160,"imageIndex":93},{"imageOffset":10937212,"symbol":"-[UIApplication _run]","symbolLocation":868,"imageIndex":32},{"imageOffset":10953588,"symbol":"UIApplicationMain","symbolLocation":124,"imageIndex":32},{"imageOffset":151504,"symbol":"UIApplicationMain(_:_:_:_:)","symbolLocation":100,"imageIndex":11},{"imageOffset":24412,"sourceFile":"<compiler-generated>","symbol":"static UIApplicationDelegate.main()","symbolLocation":104,"imageIndex":2},{"imageOffset":24292,"sourceLine":6,"sourceFile":"AppDelegate.swift","symbol":"static AppDelegate.$main()","imageIndex":2,"symbolLocation":44},{"imageOffset":36148,"sourceFile":"<compiler-generated>","symbol":"main","symbolLocation":28,"imageIndex":2},{"imageOffset":8096,"symbol":"start_sim","symbolLocation":20,"imageIndex":1},{"imageOffset":24360,"symbol":"start","symbolLocation":2236,"imageIndex":0}]},{"id":9791508,"frames":[{"imageOffset":9780,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":86}]},{"id":9791509,"frames":[{"imageOffset":9780,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":86}]},{"id":9791510,"frames":[{"imageOffset":9780,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":86}]},{"id":9791515,"frames":[{"imageOffset":9780,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":86}]},{"id":9791516,"name":"com.apple.uikit.eventfetch-thread","frames":[{"imageOffset":4496,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":85},{"imageOffset":74328,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":85},{"imageOffset":37784,"symbol":"mach_msg_overwrite","symbolLocation":540,"imageIndex":85},{"imageOffset":5376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":85},{"imageOffset":547272,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":92},{"imageOffset":524348,"symbol":"__CFRunLoopRun","symbolLocation":1152,"imageIndex":92},{"imageOffset":522148,"symbol":"CFRunLoopRunSpecific","symbolLocation":584,"imageIndex":92},{"imageOffset":4976684,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":94},{"imageOffset":4977232,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":60,"imageIndex":94},{"imageOffset":11593020,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":424,"imageIndex":32},{"imageOffset":5130768,"symbol":"__NSThread__start__","symbolLocation":704,"imageIndex":94},{"imageOffset":29736,"symbol":"_pthread_start","symbolLocation":116,"imageIndex":86},{"imageOffset":9800,"symbol":"thread_start","symbolLocation":8,"imageIndex":86}]}],
"usedImages" : [
{
"source" : "P",
"arch" : "arm64e",
"base" : 4348051456,
"size" : 589824,
"uuid" : "ac277a36-1808-327a-8761-cca585421212",
"path" : "\/usr\/lib\/dyld",
"name" : "dyld"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4350279680,
"size" : 327680,
"uuid" : "d763ecdd-458a-3dc0-92d4-bf4f7a54bfbb",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/dyld_sim",
"name" : "dyld_sim"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4340940800,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "io.tuist.MyDemo",
"size" : 3178496,
"uuid" : "c18dc2a4-7d59-3d44-b9f5-6c58037f4787",
"path" : "\/Users\/*\/Library\/Developer\/Xcode\/UserData\/Previews\/Simulator Devices\/FE19CEA7-307F-4810-983B-A1971AA9ABA8\/data\/Containers\/Bundle\/Application\/17DB6D99-78B0-4363-BE1E-1840989969C8\/MyDemo.app\/MyDemo",
"name" : "MyDemo",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4349329408,
"CFBundleShortVersionString" : "14.0",
"CFBundleIdentifier" : "com.apple.dt.PreviewsInjection",
"size" : 245760,
"uuid" : "68ac0741-a25a-3520-86da-f00331c8f023",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/PreviewsInjection.framework\/PreviewsInjection",
"name" : "PreviewsInjection",
"CFBundleVersion" : "20.10.12"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4360486912,
"CFBundleShortVersionString" : "16.2",
"CFBundleIdentifier" : "com.apple.SafariServices",
"size" : 2129920,
"uuid" : "f5e00d77-c08e-3790-8595-8a559c8cd459",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/Frameworks\/SafariServices.framework\/SafariServices",
"name" : "SafariServices",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4354244608,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.StoreKit",
"size" : 868352,
"uuid" : "021ada49-79db-3411-a509-bd3bb8da69db",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/StoreKit.framework\/StoreKit",
"name" : "StoreKit",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4347985920,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.UIKit",
"size" : 16384,
"uuid" : "8b154880-95fe-390f-ae82-1a3a3a640227",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/UIKit.framework\/UIKit",
"name" : "UIKit",
"CFBundleVersion" : "6209"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4349853696,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "io.tuist.MyDemoKit",
"size" : 16384,
"uuid" : "ef2afdaf-8e92-3959-b04b-61157e871039",
"path" : "\/Users\/*\/Library\/Developer\/Xcode\/DerivedData\/MyDemo-esxaxvwzkxyfpqhasbnfxjfqbsed\/Build\/Intermediates.noindex\/Previews\/MyDemo\/Products\/Debug-iphonesimulator\/MyDemoKit.framework\/MyDemoKit",
"name" : "MyDemoKit",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4349935616,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "io.tuist.MyDemoUI",
"size" : 16384,
"uuid" : "8a1e253e-2414-30ad-a21a-02b14833cbb5",
"path" : "\/Users\/*\/Library\/Developer\/Xcode\/DerivedData\/MyDemo-esxaxvwzkxyfpqhasbnfxjfqbsed\/Build\/Intermediates.noindex\/Previews\/MyDemo\/Products\/Debug-iphonesimulator\/MyDemoUI.framework\/MyDemoUI",
"name" : "MyDemoUI",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4431806464,
"CFBundleShortVersionString" : "4.2.11",
"CFBundleIdentifier" : "com.apple.SwiftUI",
"size" : 22560768,
"uuid" : "1bb9ceee-86d4-35a6-89c9-bd86a50e7f0f",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/SwiftUI.framework\/SwiftUI",
"name" : "SwiftUI",
"CFBundleVersion" : "4.2.11"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4465934336,
"CFBundleShortVersionString" : "8614",
"CFBundleIdentifier" : "com.apple.WebKit",
"size" : 10682368,
"uuid" : "b71891a7-717d-37ec-8e18-7ef3fccc7ca0",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/Frameworks\/WebKit.framework\/WebKit",
"name" : "WebKit",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4355997696,
"size" : 425984,
"uuid" : "824e5d3b-d62e-3919-a9fc-a0d78999a629",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/swift\/libswiftUIKit.dylib",
"name" : "libswiftUIKit.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4352835584,
"CFBundleShortVersionString" : "12.0",
"CFBundleIdentifier" : "com.apple.AuthenticationServices",
"size" : 393216,
"uuid" : "4c3e8217-c691-31fb-b121-2a129c16ffaa",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/Frameworks\/AuthenticationServices.framework\/AuthenticationServices",
"name" : "AuthenticationServices",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4357390336,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.AuthenticationServicesCore",
"size" : 491520,
"uuid" : "26e1caba-8c27-3625-9fd2-c6bf0f110c36",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/AuthenticationServicesCore.framework\/AuthenticationServicesCore",
"name" : "AuthenticationServicesCore"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4358356992,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.OnBoardingKit",
"size" : 327680,
"uuid" : "90d1ec08-83f4-3f70-aee0-7abe41c86385",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/OnBoardingKit.framework\/OnBoardingKit",
"name" : "OnBoardingKit",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4370595840,
"CFBundleShortVersionString" : "1",
"CFBundleIdentifier" : "com.apple.preferences-framework",
"size" : 1114112,
"uuid" : "1f3c0f11-f05c-316f-8fe8-da7828ceac36",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/Preferences.framework\/Preferences",
"name" : "Preferences",
"CFBundleVersion" : "5156.3.6"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4350869504,
"CFBundleShortVersionString" : "8614",
"CFBundleIdentifier" : "com.apple.WebBookmarks",
"size" : 753664,
"uuid" : "62f06696-9010-3b4f-8fce-103cc888db6b",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/WebBookmarks.framework\/WebBookmarks",
"name" : "WebBookmarks",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4387291136,
"CFBundleShortVersionString" : "1.0.0",
"CFBundleIdentifier" : "com.apple.ContactsUI",
"size" : 3031040,
"uuid" : "f7d1e40c-7f39-32fd-8317-c10f440ad95c",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/ContactsUI.framework\/ContactsUI",
"name" : "ContactsUI",
"CFBundleVersion" : "1189.1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4373217280,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.PencilKit",
"size" : 3375104,
"uuid" : "b3b73c84-1c6c-391f-893d-97d2666709e9",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/PencilKit.framework\/PencilKit",
"name" : "PencilKit",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4380327936,
"CFBundleShortVersionString" : "16.2",
"CFBundleIdentifier" : "com.apple.mobilesafari.framework",
"size" : 1081344,
"uuid" : "05048183-4bfb-30d1-a806-032363891dfa",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/MobileSafari.framework\/MobileSafari",
"name" : "MobileSafari",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4365500416,
"CFBundleShortVersionString" : "8614",
"CFBundleIdentifier" : "com.apple.Safari.Shared.UI",
"size" : 1916928,
"uuid" : "e3e5bbf4-5894-36a4-b1e2-902828c6ba52",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/SafariSharedUI.framework\/SafariSharedUI",
"name" : "SafariSharedUI",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4352425984,
"CFBundleShortVersionString" : "8614",
"CFBundleIdentifier" : "com.apple.SafariFoundation",
"size" : 147456,
"uuid" : "7901d09a-ede8-3cda-a20f-2babcc1feb98",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/SafariFoundation.framework\/SafariFoundation",
"name" : "SafariFoundation",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4410703872,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.MediaPlayer",
"size" : 3653632,
"uuid" : "d3a4bd8c-83fa-3ffc-abfc-59f584da14e7",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/MediaPlayer.framework\/MediaPlayer",
"name" : "MediaPlayer",
"CFBundleVersion" : "4022.330.3"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4418879488,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.MapKit",
"size" : 2850816,
"uuid" : "a62c40a8-177c-3845-ba91-669d7e5f71a9",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/MapKit.framework\/MapKit",
"name" : "MapKit",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4542431232,
"CFBundleShortVersionString" : "8614",
"CFBundleIdentifier" : "com.apple.JavaScriptCore",
"size" : 20283392,
"uuid" : "053bf96b-3e2b-3dc0-91c1-3c425601b7d7",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/Frameworks\/JavaScriptCore.framework\/JavaScriptCore",
"name" : "JavaScriptCore",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4353867776,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.WebUI",
"size" : 131072,
"uuid" : "ca5e868b-c03f-37bb-9e3d-82aa33aa4b06",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/WebUI.framework\/WebUI",
"name" : "WebUI",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4394467328,
"CFBundleShortVersionString" : "8614",
"CFBundleIdentifier" : "com.apple.Safari.Core",
"size" : 786432,
"uuid" : "31b0f142-b2a2-3b90-9067-18bcd9646dd2",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/SafariCore.framework\/SafariCore",
"name" : "SafariCore",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4359143424,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.AuthKitUI",
"size" : 475136,
"uuid" : "cfa1e26d-0465-3f0e-99c2-9d8a19170d80",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/AuthKitUI.framework\/AuthKitUI",
"name" : "AuthKitUI",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4382883840,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.AppSSO",
"size" : 196608,
"uuid" : "45693d21-8734-3fbe-b625-ff857cb0d1fb",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/AppSSO.framework\/AppSSO",
"name" : "AppSSO",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4383326208,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.LocalAuthenticationPrivateUI",
"size" : 147456,
"uuid" : "abfda801-f055-39aa-becc-73002bd883c1",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/LocalAuthenticationPrivateUI.framework\/LocalAuthenticationPrivateUI",
"name" : "LocalAuthenticationPrivateUI",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4396335104,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.RemoteUI",
"size" : 638976,
"uuid" : "dcb572d1-b636-3b54-9d44-604a9e9fd1da",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/RemoteUI.framework\/RemoteUI",
"name" : "RemoteUI",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4369727488,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.DocumentManager",
"size" : 294912,
"uuid" : "c9599edd-0775-3c1f-b7cb-869b06d28d09",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/DocumentManager.framework\/DocumentManager",
"name" : "DocumentManager",
"CFBundleVersion" : "280.3.4"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4489052160,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.UIKitCore",
"size" : 23838720,
"uuid" : "3f2e4277-d1ab-3c9c-8ca1-14c5ef9dbfc8",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/UIKitCore.framework\/UIKitCore",
"name" : "UIKitCore",
"CFBundleVersion" : "6209"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4383703040,
"CFBundleShortVersionString" : "1853",
"CFBundleIdentifier" : "com.apple.ShareSheet",
"size" : 983040,
"uuid" : "fae39dc2-ee5f-3aa6-8543-202a5f35b83e",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/ShareSheet.framework\/ShareSheet",
"name" : "ShareSheet",
"CFBundleVersion" : "1853"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4400250880,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.PrintKitUI",
"size" : 573440,
"uuid" : "05c6d3a7-3b8b-3a8b-bf3e-c4e84dd5432b",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/PrintKitUI.framework\/PrintKitUI",
"name" : "PrintKitUI",
"CFBundleVersion" : "15.1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4425138176,
"CFBundleShortVersionString" : "8614",
"CFBundleIdentifier" : "com.apple.WebKitLegacy",
"size" : 1654784,
"uuid" : "978ce30a-2d27-3351-b0a9-1cd09ea6c86f",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/WebKitLegacy.framework\/WebKitLegacy",
"name" : "WebKitLegacy",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4688904192,
"CFBundleShortVersionString" : "8614",
"CFBundleIdentifier" : "com.apple.WebCore",
"size" : 38977536,
"uuid" : "36e6cc90-75d3-306f-99ee-e3cdfdad8762",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/WebCore.framework\/WebCore",
"name" : "WebCore",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4401545216,
"size" : 3522560,
"uuid" : "edc9428d-dde1-3194-9982-4d011f19a646",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/WebCore.framework\/Frameworks\/libANGLE-shared.dylib",
"name" : "libANGLE-shared.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4386881536,
"CFBundleShortVersionString" : "8614",
"CFBundleIdentifier" : "com.apple.WebGPU",
"size" : 245760,
"uuid" : "ae0d6d30-af7e-3cd2-b839-2b4e9970ca8b",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/WebGPU.framework\/WebGPU",
"name" : "WebGPU",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4590501888,
"size" : 7831552,
"uuid" : "0e0f0eff-592b-30a4-9d36-141c73af8689",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/WebCore.framework\/Frameworks\/libwebrtc.dylib",
"name" : "libwebrtc.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4397711360,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.PDFKit",
"size" : 933888,
"uuid" : "7a8f4306-9635-3a84-ab0b-a3b31fe3c51f",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/PDFKit.framework\/PDFKit",
"name" : "PDFKit",
"CFBundleVersion" : "1158.3.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4428578816,
"CFBundleShortVersionString" : "5.0",
"CFBundleIdentifier" : "com.apple.CorePDF",
"size" : 819200,
"uuid" : "42be2f5d-976a-39b8-bba4-5d5186731715",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/CorePDF.framework\/CorePDF",
"name" : "CorePDF",
"CFBundleVersion" : "551"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4409163776,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.LiftUI",
"size" : 573440,
"uuid" : "57892d57-2599-3205-8082-53c46742d390",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/LiftUI.framework\/LiftUI",
"name" : "LiftUI",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4347887616,
"size" : 16384,
"uuid" : "73bebae1-764e-32cb-b78c-34c92c0bd8d6",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/swift\/libswiftWebKit.dylib",
"name" : "libswiftWebKit.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4350017536,
"CFBundleShortVersionString" : "17",
"CFBundleIdentifier" : "com.apple.RecapPerformanceTesting",
"size" : 81920,
"uuid" : "e2780ffb-0e1f-37f5-9d3e-7283f91426cf",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/RecapPerformanceTesting.framework\/RecapPerformanceTesting",
"name" : "RecapPerformanceTesting",
"CFBundleVersion" : "17"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4386504704,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.settingsandcoreapps.SettingsFoundation",
"size" : 81920,
"uuid" : "74582e4b-e720-33c9-991b-931388b25e9c",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/SettingsFoundation.framework\/SettingsFoundation",
"name" : "SettingsFoundation",
"CFBundleVersion" : "1048.1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4577427456,
"CFBundleShortVersionString" : "8614",
"CFBundleIdentifier" : "com.apple.Safari.Shared",
"size" : 2342912,
"uuid" : "0b9762c8-5d9d-36a1-beec-044d6ddddadd",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Cryptexes\/OS\/System\/Library\/PrivateFrameworks\/SafariShared.framework\/SafariShared",
"name" : "SafariShared",
"CFBundleVersion" : "8614.3.6.10.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4386078720,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.AppSupportUI",
"size" : 180224,
"uuid" : "7d72100a-8001-395c-a5f6-066d645b3f27",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/AppSupportUI.framework\/AppSupportUI",
"name" : "AppSupportUI"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4360290304,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.PersonaUI",
"size" : 65536,
"uuid" : "b05972a4-845b-39cf-bb58-b993e87222ac",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/PersonaUI.framework\/PersonaUI",
"name" : "PersonaUI",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4407279616,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.Contacts.ContactsUICore",
"size" : 524288,
"uuid" : "e41574f3-5e6b-38c4-90d9-b74042ca6532",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/ContactsUICore.framework\/ContactsUICore",
"name" : "ContactsUICore",
"CFBundleVersion" : "3473"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4540727296,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.TemplateKit",
"size" : 294912,
"uuid" : "5ea14ba5-5118-3651-9436-a13b5b2d94f9",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/TemplateKit.framework\/TemplateKit",
"name" : "TemplateKit",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4399710208,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.MaterialKit",
"size" : 114688,
"uuid" : "365dc0cb-598e-32ac-af49-e0096279f21b",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/MaterialKit.framework\/MaterialKit",
"name" : "MaterialKit",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4408688640,
"CFBundleShortVersionString" : "154",
"CFBundleIdentifier" : "com.apple.MetalKit",
"size" : 114688,
"uuid" : "38b25309-a406-33c0-8ab1-1c749e42d73d",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/MetalKit.framework\/MetalKit",
"name" : "MetalKit",
"CFBundleVersion" : "154"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4410228736,
"CFBundleShortVersionString" : "617.14",
"CFBundleIdentifier" : "com.apple.BaseBoardUI",
"size" : 163840,
"uuid" : "60a32761-9d75-3e03-b655-4daae16590bf",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/BaseBoardUI.framework\/BaseBoardUI",
"name" : "BaseBoardUI",
"CFBundleVersion" : "617.14"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4572692480,
"CFBundleShortVersionString" : "212",
"CFBundleIdentifier" : "com.apple.LinkPresentation",
"size" : 1015808,
"uuid" : "d85151af-ceb1-3f29-bb7e-087d580c2976",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/LinkPresentation.framework\/LinkPresentation",
"name" : "LinkPresentation",
"CFBundleVersion" : "212.11"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4567810048,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.AVKit",
"size" : 1441792,
"uuid" : "87f1c176-5b56-34a5-a642-9678ece06279",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/AVKit.framework\/AVKit",
"name" : "AVKit",
"CFBundleVersion" : "972.1.7"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4430102528,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.Pegasus",
"size" : 409600,
"uuid" : "138a7c8a-6b20-3ac7-abbb-6f018814bdc8",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/Pegasus.framework\/Pegasus",
"name" : "Pegasus",
"CFBundleVersion" : "259.5"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4386734080,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.ParsecSubscriptionServiceSupport",
"size" : 16384,
"uuid" : "28f21448-03bf-30b4-982a-fcb231107f0f",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/ParsecSubscriptionServiceSupport.framework\/ParsecSubscriptionServiceSupport",
"name" : "ParsecSubscriptionServiceSupport",
"CFBundleVersion" : "977"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4571152384,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.AppStoreComponents",
"size" : 671744,
"uuid" : "d945d5f5-1452-3a73-bae3-2005de394d08",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/AppStoreComponents.framework\/AppStoreComponents",
"name" : "AppStoreComponents",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4575182848,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.VideoSubscriberAccount.VideoSubscriberAccountFramework",
"size" : 720896,
"uuid" : "dce43081-ae6b-3aec-afb8-d777ad83cc39",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/VideoSubscriberAccount.framework\/VideoSubscriberAccount",
"name" : "VideoSubscriberAccount",
"CFBundleVersion" : "453.20.8"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4582293504,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.JetEngine",
"size" : 2899968,
"uuid" : "bfdc4d31-8e32-36d2-933b-2362cd5588e3",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/JetEngine.framework\/JetEngine",
"name" : "JetEngine",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4601004032,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.JetUI",
"size" : 835584,
"uuid" : "4a528e69-6f85-3e66-bf16-e45d426d2043",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/JetUI.framework\/JetUI",
"name" : "JetUI",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4541431808,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.-JetEngine-SwiftUI",
"size" : 573440,
"uuid" : "27c06d77-8a7c-3430-aceb-1e8671778995",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/_JetEngine_SwiftUI.framework\/_JetEngine_SwiftUI",
"name" : "_JetEngine_SwiftUI",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4400037888,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.AppStoreOverlays",
"size" : 49152,
"uuid" : "881539c9-eb42-3d8f-9574-967682358603",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/AppStoreOverlays.framework\/AppStoreOverlays",
"name" : "AppStoreOverlays",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4586536960,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.chronokit",
"size" : 1490944,
"uuid" : "7a9f045f-5e8e-3d65-9f54-c345dd0d786b",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/ChronoKit.framework\/ChronoKit",
"name" : "ChronoKit",
"CFBundleVersion" : "281.49"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4606214144,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.widgetkit",
"size" : 1163264,
"uuid" : "28a330f7-e4b4-34f4-9f72-740b4a24586e",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/WidgetKit.framework\/WidgetKit",
"name" : "WidgetKit",
"CFBundleVersion" : "281.49"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4576886784,
"CFBundleShortVersionString" : "14.0",
"CFBundleIdentifier" : "com.apple.dt.PreviewsOSSupportUI",
"size" : 114688,
"uuid" : "cd57d193-450a-34f3-8164-3e65f4323be9",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/PreviewsOSSupportUI.framework\/PreviewsOSSupportUI",
"name" : "PreviewsOSSupportUI",
"CFBundleVersion" : "20.10.12"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4431314944,
"CFBundleShortVersionString" : "14.0",
"CFBundleIdentifier" : "com.apple.dt.PreviewsServicesUI",
"size" : 180224,
"uuid" : "2969e637-6fc3-3a62-a1f6-9e5870d2ac80",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/PreviewsServicesUI.framework\/PreviewsServicesUI",
"name" : "PreviewsServicesUI",
"CFBundleVersion" : "20.10.12"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4589731840,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.chronouiservices",
"size" : 163840,
"uuid" : "ee605f7e-7a18-3fe3-951a-c0e643447809",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/ChronoUIServices.framework\/ChronoUIServices",
"name" : "ChronoUIServices",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4588912640,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.internal.ActivityUIServices",
"size" : 360448,
"uuid" : "47526d77-2dbf-39c9-81d8-8ca3ca26338d",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/ActivityUIServices.framework\/ActivityUIServices",
"name" : "ActivityUIServices",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4603740160,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.PlatterKit",
"size" : 278528,
"uuid" : "c3fde66d-0f65-3f90-85db-85cebff37aeb",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/PlatterKit.framework\/PlatterKit",
"name" : "PlatterKit",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4590157824,
"size" : 98304,
"uuid" : "4064cd8e-11c3-39f4-bd8b-ce33c949fc8d",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/swift\/libswiftExtensionKit.dylib",
"name" : "libswiftExtensionKit.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4602970112,
"CFBundleShortVersionString" : "97",
"CFBundleIdentifier" : "com.apple.ExtensionKit",
"size" : 98304,
"uuid" : "6c72df7b-75ff-3fa2-965d-44ad30b70690",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/ExtensionKit.framework\/ExtensionKit",
"name" : "ExtensionKit",
"CFBundleVersion" : "97"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4604428288,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.BacklightServicesHost",
"size" : 622592,
"uuid" : "9908f9fb-d6e3-3267-b426-1830cfb8ed0a",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/BacklightServicesHost.framework\/BacklightServicesHost",
"name" : "BacklightServicesHost",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4410621952,
"size" : 49152,
"uuid" : "16ee454c-d2a0-37be-a3fb-576c1a143ac4",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/libobjc-trampolines.dylib",
"name" : "libobjc-trampolines.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4603265024,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.AccessibilitySettingsLoader",
"size" : 147456,
"uuid" : "e317c623-41b0-387c-afb5-c8f8dafa24c7",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/AccessibilityBundles\/AccessibilitySettingsLoader.bundle\/AccessibilitySettingsLoader",
"name" : "AccessibilitySettingsLoader",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4644847616,
"CFBundleShortVersionString" : "1.0.0",
"CFBundleIdentifier" : "com.apple.UIKit.axbundle",
"size" : 1146880,
"uuid" : "51dc158f-c331-3ef1-b071-acd5882aba72",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/AccessibilityBundles\/UIKit.axbundle\/UIKit",
"name" : "UIKit",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4641161216,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.accessibility.AccessibilityUIUtilities",
"size" : 655360,
"uuid" : "90550aac-064a-31d3-83ba-fc97dbdadc35",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/AccessibilityUIUtilities.framework\/AccessibilityUIUtilities",
"name" : "AccessibilityUIUtilities",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4602839040,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.accessibility.SpeakTypingServices",
"size" : 16384,
"uuid" : "bb7af520-e7cc-3559-8f1f-5732f2bc0666",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/SpeakTypingServices.framework\/SpeakTypingServices",
"name" : "SpeakTypingServices",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4638638080,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.AXFrontBoardUtils",
"size" : 65536,
"uuid" : "1678673d-bdff-3e61-8364-d8d58760883f",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/AXFrontBoardUtils.framework\/AXFrontBoardUtils",
"name" : "AXFrontBoardUtils",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4642471936,
"CFBundleShortVersionString" : "3.0",
"CFBundleIdentifier" : "com.apple.DataDetectorsUI",
"size" : 425984,
"uuid" : "6a3567c4-be39-349d-bc7b-b6c76f18e61d",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/DataDetectorsUI.framework\/DataDetectorsUI",
"name" : "DataDetectorsUI",
"CFBundleVersion" : "486.3"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4638801920,
"CFBundleShortVersionString" : "1.0.0",
"CFBundleIdentifier" : "com.apple.UIAccessibility",
"size" : 933888,
"uuid" : "d8364251-157a-3060-8bed-a285104e7976",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/UIAccessibility.framework\/UIAccessibility",
"name" : "UIAccessibility",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4657823744,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.eventkitui",
"size" : 2228224,
"uuid" : "66f3472c-57b2-3445-9ba7-d43e337b849c",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/EventKitUI.framework\/EventKitUI",
"name" : "EventKitUI",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4643487744,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.CalendarUIKit",
"size" : 393216,
"uuid" : "a246e538-cfa1-31a3-b64a-27655ab3bc7b",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/CalendarUIKit.framework\/CalendarUIKit",
"name" : "CalendarUIKit",
"CFBundleVersion" : "1171.3.1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4662820864,
"size" : 2785280,
"uuid" : "cf1e92a3-f996-3751-81ab-1c244d6d6a2e",
"path" : "\/Users\/*\/Library\/Developer\/Xcode\/DerivedData\/MyDemo-esxaxvwzkxyfpqhasbnfxjfqbsed\/Build\/Intermediates.noindex\/Previews\/MyDemo\/Intermediates.noindex\/MyDemo.build\/Debug-iphonesimulator\/MyDemo.build\/Objects-normal\/arm64\/SwiftUIView.1.preview-thunk.dylib",
"name" : "SwiftUIView.1.preview-thunk.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 7253266432,
"size" : 229352,
"uuid" : "c83d7f56-8483-3297-9cf0-48ef4f42047e",
"path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
"name" : "libsystem_kernel.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 7253618688,
"size" : 53240,
"uuid" : "73f649ed-142d-3aad-b3af-3fe33548b725",
"path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
"name" : "libsystem_pthread.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6443192320,
"size" : 511988,
"uuid" : "809fd1a9-98ea-308b-82ad-ec137230577a",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/system\/libsystem_c.dylib",
"name" : "libsystem_c.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6444711936,
"size" : 106492,
"uuid" : "f125b535-94ac-34d8-b81b-e9f4b59004fc",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/libc++abi.dylib",
"name" : "libc++abi.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6442631168,
"size" : 216480,
"uuid" : "2140ae27-11dd-398f-b65a-ad86245d6cc8",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/libobjc.A.dylib",
"name" : "libobjc.A.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6443704320,
"size" : 290816,
"uuid" : "75a8e72d-f60e-33db-9798-e4f60f5c9226",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/system\/libdispatch.dylib",
"name" : "libdispatch.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6525222912,
"CFBundleShortVersionString" : "812.12",
"CFBundleIdentifier" : "com.apple.FrontBoardServices",
"size" : 610304,
"uuid" : "ec6237da-fa1b-3b51-8aee-bac48e05ac89",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/FrontBoardServices.framework\/FrontBoardServices",
"name" : "FrontBoardServices",
"CFBundleVersion" : "812.12"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6445518848,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.CoreFoundation",
"size" : 3854336,
"uuid" : "9b810641-e5e7-3950-a3f7-25ce1ede4d7a",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/CoreFoundation.framework\/CoreFoundation",
"name" : "CoreFoundation",
"CFBundleVersion" : "1953.300"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6593396736,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.GraphicsServices",
"size" : 36864,
"uuid" : "3340e7ba-7ef4-3baf-b4b8-28b2e06fe6e6",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/GraphicsServices.framework\/GraphicsServices",
"name" : "GraphicsServices",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6449856512,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.Foundation",
"size" : 9129984,
"uuid" : "4a53f446-37df-36ed-aaf0-242bf3845fc0",
"path" : "\/Applications\/Xcode14.2.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/Foundation.framework\/Foundation",
"name" : "Foundation",
"CFBundleVersion" : "1953.300"
},
{
"size" : 0,
"source" : "A",
"base" : 0,
"uuid" : "00000000-0000-0000-0000-000000000000"
}
],
"sharedCache" : {
"base" : 6442450944,
"size" : 1365655552,
"uuid" : "d22cb990-ca2a-3553-9734-467826ab8924"
},
"vmSummary" : "ReadOnly portion of Libraries: Total=995.3M resident=0K(0%) swapped_out_or_unallocated=995.3M(100%)\nWritable regions: Total=1.1G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.1G(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nActivity Tracing 256K 1 \nColorSync 32K 2 \nFoundation 16K 1 \nKernel Alloc Once 32K 1 \nMALLOC 247.3M 42 \nMALLOC guard page 192K 11 \nMALLOC_MEDIUM (reserved) 480.0M 4 reserved VM address space (unallocated)\nMALLOC_NANO (reserved) 384.0M 1 reserved VM address space (unallocated)\nSTACK GUARD 56.1M 6 \nStack 10.6M 6 \nVM_ALLOCATE 1056K 2 \n__DATA 17.2M 623 \n__DATA_CONST 57.9M 621 \n__DATA_DIRTY 66K 11 \n__FONT_DATA 4K 1 \n__LINKEDIT 442.1M 86 \n__OBJC_RO 28.4M 1 \n__OBJC_RW 882K 1 \n__TEXT 553.2M 630 \ndyld private memory 1056K 6 \nmapped file 29.1M 3 \nshared memory 16K 1 \n=========== ======= ======= \nTOTAL 2.3G 2061 \nTOTAL, minus reserved VM space 1.4G 2061 \n",
"legacyInfo" : {
"threadTriggered" : {
"queue" : "com.apple.main-thread"
}
},
"logWritingSignature" : "36c21b257aa5726631dd91139f15cbe81a88b51a",
"trialInfo" : {
"rollouts" : [
{
"rolloutId" : "63582c5f8a53461413999550",
"factorPackIds" : {
},
"deploymentId" : 240000002
},
{
"rolloutId" : "5fb4245a1bbfe8005e33a1e1",
"factorPackIds" : {
},
"deploymentId" : 240000021
}
],
"experiments" : [
{
"treatmentId" : "a092db1b-c401-44fa-9c54-518b7d69ca61",
"experimentId" : "64a844035c85000c0f42398a",
"deploymentId" : 400000016
},
{
"treatmentId" : "3a3cf641-8471-4e4e-9ad4-81d0ede970fd",
"experimentId" : "64a84dae90d82611a0bd7d3d",
"deploymentId" : 400000010
}
]
}
}
Model: MacBookPro18,1, BootROM 8422.121.1, proc 10:8:2 processors, 32 GB, SMC
Graphics: Apple M1 Pro, Apple M1 Pro, Built-In
Display: DELL S2722QC, 5120 x 2880 (5K/UHD+ - Ultra High Definition Plus), Main, MirrorOff, Online
Display: Color LCD, 3456 x 2234 Retina, MirrorOff, Online
Display: DELL P2422H, 1080 x 1920, MirrorOff, Online
Memory Module: LPDDR5, Hynix
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4387), wl0: Mar 8 2023 18:27:05 version 20.96.27.0.8.7.144 FWID 01-ec2ac09e
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB31Bus
USB Device: USB3.2 Hub
USB Device: USB2.1 Hub
USB Device: HID Device
USB Device: USB31Bus
USB Device: Apple Watch Magnetic Charging Cable
USB Device: USB31Bus
USB Device: USB 2.0 BILLBOARD
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
3. AppDelegate 포함 모든 코드 삭제 후 SwiftUI 기본 View 만 남겨도, 여전히 Crash 발생
=> 이 때 조기발견 실패해서 엄청난 삽질의 시작...
여기서 Preview가 잘 됐어야함..
정확한 이유를 모르지만, Crash 의 원인을 없애도 제대로 새로고침 안되고 계속 Crash 남. ( Clean Build Forder 도 안먹힘. )
Preview 의 텍스트나 배경색 등 UI를 조금 수정하면 제대로 새로고침 됨 ... ㅠㅠㅠㅠㅠ
4. 새로운 프로젝트 만드니 Preview 잘 됨.
=> macOS Version 이나 Apple Silcon Chip 의 문제가 아니라,
사내 프로젝트의 설정값이나 서드파티의 문제라고 파악.
5. 삽질 하던 중 Build Phases 에서 Link Binary With Libraries 를 다 지워보니 Preview 잘 됨.
=> Link Binary With Libraries 중에 문제가 있다고 파악.
Tip. Link Binary With Libraries ?
타겟이 Compile 될 때, 어떤 외부 라이브러리나 프레임워크와 링크할지를 지정하는 옵션
6. Tuist의 Package Manager를 사용했기 때문에, 많은(65개) Link Binary With Libraries 가 있었고,
여기서 원인을 찾아야 하는 상황.
하나의 framework 를 지우고 Preview 가 되는지 확인하는 식이라면, 65번 안에 찾을 수 있었겠지만,
지웠을 때 의존된 다른 framework 에서 에러가 나는 상황이 많았고, 에러 때문에 build가 안되면 Preview도 안보이기 때문에,
의존성으로 묶인 .framework 묶음을 찾는, 상당한 삽질이 필요한 작업이었음.
포기하지 않고 계속 추측하면서 framework를 찾음.
FirebaseSDK를 사용하면 설치되는 GoogleDataTransport.framework 를 지우니 Preview가 잘 보임.
찾았을 때 소리지름.
=> FirebaseSDK 가 문제구나.
7. Firebase SDK 버전을 업데이트함 8.12.1 -> 9.6.0 (최신)
그래도 안됨..
=> version 문제는 아니네..
8. 새 프로젝트에 Xcode SPM 으로 Firebase SDK 8.12.1 설치했는데,
새 프로젝트에서는 Preview 정상.
=> 하긴, Firebase는 잘못이 없지.. Xcode SPM 과 Tuist SPM 의 차이점이 뭐지?
- Swift SPM의 경우 :
외부종속성(External Dependecy)는 Package 로 관리.
Target Dependency 들은 Link Binary With Libraries에 Static Library로 들어감.
- Tuist SPM의 경우 :
외부종속성과 Target Dependency 모두 Link Binary With Libraries 에 framework나 xcframework 로 들어감.
( 공부해보니, Objective-C 로 만들어진 라이브러리를 Dynamic하게 로드하기 위해 -ObjC 옵션이 필요함 )
=> -ObjC가 문제인가..? 그래.. 역시 first party를 써야지.. ( Xcode SPM )
9. 회사 프로젝트에 모든 소스코드, framework 원상복구 하고, -ObjC 옵션을 지워봄.
Preview 잘 됨!!
=> -ObjC 옵션이 문제구나!
10. 또 검증하기 위해, 새 프로젝트에 Tuist SPM으로 Firebase SDK를 설치하고, -ObjC 옵션을 줌.
그런데 Preview 잘됨.....
=> 하.. -ObjC 가 원인이 아닌가..? 또 미궁속으로..?
11. 새 프로젝트에서 Preview Crash 를 재현하기 위해,
Build Settings, Build Phases, info.plist, 프로젝트 설정까지 다 맞추는 삽질함
그러다 새 프로젝트의 AppDelegate 에 Firebase.configure() 을 넣음.
그러니 Preview Crash 가 재현됨!!
=> 아하 Preview 도 결국, 빌드하고 AppDelegate 타는구나~ 굳굳~
엥,, Firebase.configure() 이 Crash 에 필요한 거라면..
삽질 초반에 회사 프로젝트에서 소스파일 다 없앴을 때 Preview가 정상 작동 해야하는데..?? 또 미궁속..
12. 회사 프로젝트에 Firebase.configure() 을 지워도 Crash 가 없어지지 않음.
그러다 UI 코드를 바꿔보니 제대로 새로고침 되면서 Crash 가 없어짐. ( Clean Build Forder 는 안되고 이게 통하네.. )
=> 아이고.. 긴 삽질이었다~~
좋아. -ObjC 가 문제가 맞구만~ 그럼 Xcode SPM을 쓰면 해결은 확실히 되겠네!
13. 더 깊은 원인을 파악하고 싶은데..
-ObjC 옵션으로 인해,
FirebaseSDK 의 GoogleDataTransport.framework 에서
Obejective-C 코드의 클래스와 카테고리를 static 하게 로드하는게,
Preview를 Crash 내는 근본적인 이유는...?
이제 더이상은 어떻게 할수가...?
Xcode Preview나 FirebaseSDK 의 버그. 여기서 끝..?
'iOS, Swift > Xcode, Xcode Error' 카테고리의 다른 글
Xcode 14.3 CocoaPods Error (0) | 2023.05.02 |
---|---|
Xcode ) Xcode 개발자 필수 단축키 (0) | 2022.11.15 |
Xcode ) Unable to boot the Simulator - EEYatHo iOS (0) | 2022.11.11 |
Xcode ) AirBridge 1.18.0, Xcode 12.5 충돌 - EEYatHo iOS (0) | 2021.11.22 |
Xcode ) Xcode13 navigationBar.backgroundImage, setBackgroundImage - EEYatHo iOS (0) | 2021.09.27 |