microsoft/appcenter

Xamarin.UITest version 4.3.3 - 4.3.4 does not work on any iOS device

Moshex opened this issue ยท 33 comments

Moshex commented

I am writing to report an issue with Xamarin.UITest version 4.3.3 - 4.3.4 on iOS. When running tests with this version, we are encountering the following error:

Exception: System.ComponentModel.Win32Exception (0x80004005): ApplicationName='idb', CommandLine='file rm --udid 00008110-000C24C93A82401E --application com.WellRx-XF/Documents', CurrentDirectory='', Native error= Cannot find the specified file
  at System.Diagnostics.Process.StartWithCreateProcess (System.Diagnostics.ProcessStartInfo startInfo) [0x0029f] in <3d05db74c0154ea0ba79ffba6c4417f9>:0 
  at System.Diagnostics.Process.Start () [0x0003a] in <3d05db74c0154ea0ba79ffba6c4417f9>:0 
  at (wrapper remoting-invoke-with-check) System.Diagnostics.Process.Start()
  at Xamarin.UITest.XDB.Services.Processes.ProcessService.StartProcess (System.String command, System.String arguments) [0x00058] in <0032cb7f0b9c4ee68b9d6ab88b6d5d42>:0 
  at Xamarin.UITest.XDB.Services.Processes.ProcessService.Run (System.String command, System.String arguments) [0x00013] in <0032cb7f0b9c4ee68b9d6ab88b6d5d42>:0 
  at Xamarin.UITest.XDB.Services.OSX.IDBService.RunCommand (System.String arguments) [0x00056] in <0032cb7f0b9c4ee68b9d6ab88b6d5d42>:0 
  at Xamarin.UITest.XDB.Services.OSX.IDBService.ClearXCAppData (Xamarin.UITest.XDB.Services.OSX.UDID UDID, System.String bundleId) [0x00046] in <0032cb7f0b9c4ee68b9d6ab88b6d5d42>:0 
  at Xamarin.UITest.XDB.Services.iOSDeviceAgentService+<>c__DisplayClass46_0.<ClearData>b__0 () [0x00016] in <0032cb7f0b9c4ee68b9d6ab88b6d5d42>:0 
  at Xamarin.UITest.XDB.Services.iOSDeviceAgentService.WithErrorHandling (System.Int32 eventId, System.Func`1[TResult] action, System.String errorMessage, System.Int32[] successCodes) [0x0000e] in <0032cb7f0b9c4ee68b9d6ab88b6d5d42>:0System.AggregateException : One or more errors occurred. (Failed to clear data for app com.WellRx-XF: ApplicationName='idb', CommandLine='file rm --udid 00008110-000C24C93A82401E --application com.WellRx-XF/Documents', CurrentDirectory='', Native error= Cannot find the specified file)
  ----> Xamarin.UITest.XDB.Exceptions.DeviceAgentException : Failed to clear data for app com.WellRx-XF: ApplicationName='idb', CommandLine='file rm --udid 00008110-000C24C93A82401E --application com.WellRx-XF/Documents', CurrentDirectory='', Native error= Cannot find the specified file
  ----> System.ComponentModel.Win32Exception : ApplicationName='idb', CommandLine='file rm --udid 00008110-000C24C93A82401E --application com.WellRx-XF/Documents', CurrentDirectory='', Native error= Cannot find the specified file
Result message:
System.AggregateException : One or more errors occurred. (Failed to clear data for app com.WellRx-XF: ApplicationName='idb', CommandLine='file rm --udid 00008110-000C24C93A82401E --application com.WellRx-XF/Documents', CurrentDirectory='', Native error= Cannot find the specified file)
  ----> Xamarin.UITest.XDB.Exceptions.DeviceAgentException : Failed to clear data for app com.WellRx-XF: ApplicationName='idb', CommandLine='file rm --udid 00008110-000C24C93A82401E --application com.WellRx-XF/Documents', CurrentDirectory='', Native error= Cannot find the specified file
  ----> System.ComponentModel.Win32Exception : ApplicationName='idb', CommandLine='file rm --udid 00008110-000C24C93A82401E --application com.WellRx-XF/Documents', CurrentDirectory='', Native error= Cannot find the specified file

if there are steps that need to be taken to be able to get iOS working with this new version please post documentation on for to get it to work.

I have already tried the idea posted here and it did not work for me to get iOS to work.
#2605 (comment)

There is a chance that I do not fully know what is being asked to do in that comment and I would like more information as to how to get Xamarin.UITest version 4.3.3 to work on iOS.

Thank you for your help!

Ensure that idb is in you path. Check in #2605 where I posted a solution

I am getting the same error after I followed the steps on #2605.

@christian26A are you using zsh or bash? Note that the linked issue specifically talks about bash. When I added it to my bash profile and made sure that the terminal used a new session (and thus refreshing the bash profile, and path variable) it started working for me.

Moshex commented

@christian26A are you using zsh or bash? Note that the linked issue specifically talks about bash. When I added it to my bash profile and made sure that the terminal used a new session (and thus refreshing the bash profile, and path variable) it started working for me.

mine is zsh what do I do to switch it and do I need to switch it? and how did you make sure that the terminal used a new session?

Thank you @Moshex for opening this after the prior one was closed -- this isn't StackOverflow where you call it a day when someone finds a workaround. We are professional developers creating serious software and need professional solutions, which at the minimum should mean zero configuration after a dotnet restore of the packages.

In the case of Xamarin.UITest, if iOSDeviceManager is indeed being deprecated in favor of Facebook's idb, I suggest the authors of Xamarin.UITest bundle the desired version of idb within the NuGet just like they had been doing for iOSDeviceManager, and utilize that directly regardless of what is installed on the build machine.

This way, then, no one needs to risk their development computers or DevOps pipelines with unknown brew and pip3 installs, and it is less likely to break as idb surely goes through its updates as well.

@christian26A are you using zsh or bash? Note that the linked issue specifically talks about bash. When I added it to my bash profile and made sure that the terminal used a new session (and thus refreshing the bash profile, and path variable) it started working for me.

I am using bash. Here's mine path on bash file but still getting error.
export PATH=$PATH:/Library/Frameworks/Python.framework/Versions/3.12/bin

Error:
System.AggregateException : One or more errors occurred. (Failed to launch simulator: ApplicationName='idb', CommandLine='boot 49D46D82-7EFB-4C67-A1FD-A91D76978F16', CurrentDirectory='', Native error= Cannot find the specified file)
----> Xamarin.UITest.XDB.Exceptions.DeviceAgentException : Failed to launch simulator: ApplicationName='idb', CommandLine='boot 49D46D82-7EFB-4C67-A1FD-A91D76978F16', CurrentDirectory='', Native error= Cannot find the specified file
----> System.ComponentModel.Win32Exception : ApplicationName='idb', CommandLine='boot 49D46D82-7EFB-4C67-A1FD-A91D76978F16', CurrentDirectory='', Native error= Cannot find the specified file

@christian26A is idb actually in the /Library/Frameworks/Python.framework/Versions/3.12/bin folder, did you check? For me it's in /Users/jfversluis/Library/Python/3.9/bin for instance.

Make sure that you have the right path in there where idb actually is.

@Moshex it should be enough to create a .bash_profile file in your users home folder.

  1. Go to your home folder (for instance by doing cd ~/)
  2. See if here is a .bash_profile file (with ls -al)
  3. If there is, go to step 5
  4. If there isn't, create one by doing touch .bash_profile
  5. Open the .bash_profile file with your favorite editor
  6. Add export PATH=$PATH:/Users/jfversluis/Library/Python/3.9/bin and replace the /Users/jfversluis/Library/Python/3.9/bin portion with whatever the path is on your machine where idb is. You can easily locate it by doing where idb
  7. Save the file
  8. Restart your machine to be sure that it has taken effect
  9. Let us know the results!

@christian26A is idb actually in the /Library/Frameworks/Python.framework/Versions/3.12/bin folder, did you check? For me it's in /Users/jfversluis/Library/Python/3.9/bin for instance.

Make sure that you have the right path in there where idb actually is.

@Moshex it should be enough to create a .bash_profile file in your users home folder.

  1. Go to your home folder (for instance by doing cd ~/)
  2. See if here is a .bash_profile file (with ls -al)
  3. If there is, go to step 5
  4. If there isn't, create one by doing touch .bash_profile
  5. Open the .bash_profile file with your favorite editor
  6. Add export PATH=$PATH:/Users/jfversluis/Library/Python/3.9/bin and replace the /Users/jfversluis/Library/Python/3.9/bin portion with whatever the path is on your machine where idb is. You can easily locate it by doing where idb
  7. Save the file
  8. Restart your machine to be sure that it has taken effect
  9. Let us know the results!

@jfversluis I put already the correct path "/Users/christian.abrigo/Library/Python/3.12/bin" on bash profile. I restarted also my MacBook. But I still get the same error when I run the UITest.

Moshex commented

I am just moving this comment to this open ticket to add context to the question that is being answered

@blazej-kosmowski and @evgenyvalavin

I have tried both of what you guys have stated and it still does not work I'll post all the comments I did and the results below. I am not sure what I am missing and why I can't seem to get this to work:

mymackbook@Name-MacBook-Pro-4 ~ % brew tap facebook/fb
Running `brew update --auto-update`...
Installing from the API is now the default behaviour!
You can save space and time by running:
  brew untap homebrew/core
  brew untap homebrew/cask
mymackbook@Name-MacBook-Pro-4 ~ % brew install idb-companion
Warning: facebook/fb/idb-companion 1.1.8 is already installed and up-to-date.
To reinstall 1.1.8, run:
  brew reinstall idb-companion
mymackbook@Name-MacBook-Pro-4 ~ % brew reinstall idb-companion
==> Fetching facebook/fb/idb-companion
==> Downloading https://github.com/facebook/idb/releases/download/v1.1.8/idb-companion.universal.tar.gz
Already downloaded: /Users/Name/Library/Caches/Homebrew/downloads/7a067665ea5689d6f1fcffae958eff8291f4594c2e1b9dafd2fcc8d2cb6ff32e--idb-companion.universal.tar.gz
==> Reinstalling facebook/fb/idb-companion 
๐Ÿบ  /usr/local/Cellar/idb-companion/1.1.8: 215 files, 77.3MB, built in 7 seconds
==> Running `brew cleanup idb-companion`...
Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP.
Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).
mymackbook@Name-MacBook-Pro-4 ~ % pip3 install --user fb-idb
Requirement already satisfied: fb-idb in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (1.1.7)
Requirement already satisfied: aiofiles in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from fb-idb) (23.2.1)
Requirement already satisfied: grpclib>=0.4.0 in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from fb-idb) (0.4.6)
Requirement already satisfied: protobuf in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from fb-idb) (4.25.1)
Requirement already satisfied: treelib in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from fb-idb) (1.7.0)
Requirement already satisfied: h2<5,>=3.1.0 in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from grpclib>=0.4.0->fb-idb) (4.1.0)
Requirement already satisfied: multidict in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from grpclib>=0.4.0->fb-idb) (6.0.4)
Requirement already satisfied: six in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from treelib->fb-idb) (1.16.0)
Requirement already satisfied: hyperframe<7,>=6.0 in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from h2<5,>=3.1.0->grpclib>=0.4.0->fb-idb) (6.0.1)
Requirement already satisfied: hpack<5,>=4.0 in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (from h2<5,>=3.1.0->grpclib>=0.4.0->fb-idb) (4.0.0)
mymackbook@Name-MacBook-Pro-4 ~ % xcode-select -p                             
/Applications/Xcode.app/Contents/Developer
mymackbook@Name-MacBook-Pro-4 ~ % sudo xcode-select -s /Applications/Xcode.app
mymackbook@Name-MacBook-Pro-4 ~ % xcode-select -p                             
/Applications/Xcode.app/Contents/Developer 

OK one more thing you could try which seems to work for me make a symbolic link to idb for example: ln -s /Users/builder/Library/Python/3.11/bin/idb /usr/local/bin of course make sure that /Users/builder/Library/Python/3.11/bin/idb points to the location of your idb installation. That fixes the discovery of idb in my build pipeline it seems.

Moshex commented

@jfversluis @blazej-kosmowski
I will attach screenshots of my files for you to see. If you can please point out where I have gone wrong. To the best of my knowledge, I have followed all the correct steps and installed what is needed and for some reason, it still has not worked for me.

here are the images:

Screenshot 2023-12-19 at 7 43 13โ€ฏAM

Screenshot 2023-12-19 at 7 53 51โ€ฏAM

Screenshot 2023-12-19 at 7 54 02โ€ฏAM

With all this done, I am still getting the error when running iOS tests in Visual Studio for Mac 2022 with all the latest updates and Xcode version 15.1:

System.AggregateException : One or more errors occurred. (Failed to install DeviceAgent: ApplicationName='idb', CommandLine='install --udid 00008110-000C24C93A82401E "/var/folders/g1/1jz4c5yd6bx41bgkjh7vmdw80000gn/T/xdb/DeviceAgent.iOS.Dependencies/33ae004affd0d204f32e129c54ef2e10/ipa/DeviceAgent-Runner.app"', CurrentDirectory='', Native error= Cannot find the specified file)
  ----> Xamarin.UITest.XDB.Exceptions.DeviceAgentException : Failed to install DeviceAgent: ApplicationName='idb', CommandLine='install --udid 00008110-000C24C93A82401E "/var/folders/g1/1jz4c5yd6bx41bgkjh7vmdw80000gn/T/xdb/DeviceAgent.iOS.Dependencies/33ae004affd0d204f32e129c54ef2e10/ipa/DeviceAgent-Runner.app"', CurrentDirectory='', Native error= Cannot find the specified file
  ----> System.ComponentModel.Win32Exception : ApplicationName='idb', CommandLine='install --udid 00008110-000C24C93A82401E "/var/folders/g1/1jz4c5yd6bx41bgkjh7vmdw80000gn/T/xdb/DeviceAgent.iOS.Dependencies/33ae004affd0d204f32e129c54ef2e10/ipa/DeviceAgent-Runner.app"', CurrentDirectory='', Native error= Cannot find the specified file

So I think you made some progress at least, because it can find idb now, but it can't find the device agent that needs to be installed on the Simulator to actually run the tests. Unfortunately, I don't know what is going wrong with that.

Moshex commented

@jfversluis
per your comment does the current Xamarin.UITest with your system updates only works on a simulato orr do you have it working on a physical iOS device?

@blazej-kosmowski
I don't have a .zshrc file, I have a .zprofile file that should control my --zsh terminal here is an image of what that file looks like.

Screenshot 2023-12-20 at 1 28 14โ€ฏPM

@Moshex did you able to work around it?

Moshex commented

@christian26A
I have not, so far I have no response and the best thing I can do at the moment is to stay on version 4.3.2 till I get more information on how to make this work.

@Moshex
Can you proceed with running tests locally using version 4.3.2? I am still blocked on this. It seems hard now to use Xamarin UITest.

Moshex commented

yes, I can, with the only platform not working being physical iOS devices. The iOS simulator is working just fine for me. However, I am on an older Mac that has an Intel chip and I am wondering if the new Mac M2/M3 chip is causing issues for people with memory leaks coming from Xamarin.UITest.

Read my comment in follow thread #2605 , it's work for me !

Moshex commented

I have done my full testing of Xamarin.UITest version 4.3.3 and I have determined that this is not a usable version for 3 major reasons. Note all 3 of these issues DO NOT occur on version 4.3.2

  1. The application crashes multiple times when doing a full test suite run on iOS (see crash report below with screenshot)
  2. Elements that had no issues being found now have inconsistent results with being found and issues with code discovery such as not being able to find models that are in the code consistently
  3. Just to run the tests in Visual Studio for Mac 2022 with all the latest updates you need to start the application via a command in the terminal

Due to these issues the latest version Xamarin.UITest is not usable. Please fix them in the next release.

Here is the crash report:

Screenshot 2024-01-09 at 9 20 40โ€ฏPM
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Incident Identifier: 827D91EE-B626-423D-830E-328CF9821C85
CrashReporter Key:   B14C1E27-79CA-26E2-E2C2-87769A439028
Hardware Model:      MacBookPro16,1
Process:             WellRx.iOS [20175]
Path:                /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/WellRx.iOS
Identifier:         {Bundle id}
Version:             6.0.0 (6.0.0.0)
Code Type:           X86-64 (Native)
Role:                Foreground
Parent Process:      launchd_sim [11880]
Coalition:           com.apple.CoreSimulator.SimDevice.A490A6F8-1559-4405-BC5D-33DB2C8CD6C0 [6796]
Responsible Process: SimulatorTrampoline [1214]

Date/Time:           2024-01-09 21:19:09.6868 -0700
Launch Time:         2024-01-09 21:18:01.2133 -0700
OS Version:          macOS 14.2.1 (23C71)
Release Type:        User
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Triggered by Thread:  0

Thread 0 Crashed:: tid_103 Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	       0x1099137a2 __pthread_kill + 10
1   libsystem_pthread.dylib       	       0x109aaef30 pthread_kill + 262
2   libsystem_c.dylib             	    0x7ff80014cd30 abort + 133
3   WellRx.iOS                    	       0x10772ed57 xamarin_unhandled_exception_handler + 71 (runtime.m:1126)
4   WellRx.iOS                    	       0x1075a8525 mono_invoke_unhandled_exception_hook + 133 (exception.c:1265)
5   WellRx.iOS                    	       0x1074e5e13 mono_handle_exception_internal + 6867 (mini-exceptions.c:2782)
6   WellRx.iOS                    	       0x1074e4339 mono_handle_exception + 25 (mini-exceptions.c:3107)
7   WellRx.iOS                    	       0x1074637d0 mono_amd64_throw_exception + 160 (exceptions-amd64.c:409)
8   ???                           	       0x1084026b0 ???
9   ???                           	       0x10a20c851 ???
10  WellRx.iOS                    	       0x1074fc755 mono_jit_runtime_invoke + 1621 (mini-runtime.c:3217)
11  WellRx.iOS                    	       0x107622158 do_runtime_invoke + 54 (object.c:3052) [inlined]
12  WellRx.iOS                    	       0x107622158 mono_runtime_invoke_checked + 136 (object.c:3220)
13  WellRx.iOS                    	       0x1076285e5 do_exec_main_checked + 60 [inlined]
14  WellRx.iOS                    	       0x1076285e5 mono_runtime_exec_main_checked + 117 (object.c:5288)
15  WellRx.iOS                    	       0x10745a41c mono_jit_exec_internal + 14 (driver.c:1383) [inlined]
16  WellRx.iOS                    	       0x10745a41c mono_jit_exec + 364 (driver.c:1328)
17  WellRx.iOS                    	       0x10774178e xamarin_main + 2430 (monotouch-main.m:490)
18  WellRx.iOS                    	       0x1073a6d94 main + 68 (main.m:45)
19  dyld_sim                      	       0x1083663e0 start_sim + 10
20  dyld                          	       0x108a62386 start + 1942

Thread 1:
0   libsystem_kernel.dylib        	       0x10990ca2e mach_msg2_trap + 10
1   libsystem_kernel.dylib        	       0x10991ae3a mach_msg2_internal + 84
2   libsystem_kernel.dylib        	       0x109913b62 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	       0x10990cd1f mach_msg + 19
4   CoreFoundation                	    0x7ff8003f7b33 __CFRunLoopServiceMachPort + 143
5   CoreFoundation                	    0x7ff8003f22bb __CFRunLoopRun + 1371
6   CoreFoundation                	    0x7ff8003f197d CFRunLoopRunSpecific + 557
7   Foundation                    	    0x7ff800e7ab9a -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
8   Foundation                    	    0x7ff800e7adbd -[NSRunLoop(NSRunLoop) run] + 76
9   WellRx.iOS                    	       0x107160377 +[LPHTTPServer bonjourThread] + 199
10  Foundation                    	    0x7ff800ea5345 __NSThread__start__ + 1024
11  libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
12  libsystem_pthread.dylib       	       0x109aaabab thread_start + 15

Thread 2:: com.apple.CFSocket.private
0   libsystem_kernel.dylib        	       0x10991591e __select + 10
1   CoreFoundation                	    0x7ff800406343 __CFSocketManager + 643
2   libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
3   libsystem_pthread.dylib       	       0x109aaabab thread_start + 15

Thread 3:: SGen worker
0   libsystem_kernel.dylib        	       0x10990f5ce __psynch_cvwait + 10
1   libsystem_pthread.dylib       	       0x109aaf76b _pthread_cond_wait + 1211
2   WellRx.iOS                    	       0x1076d1a23 mono_os_cond_wait + 22 (mono-os-mutex.h:219) [inlined]
3   WellRx.iOS                    	       0x1076d1a23 get_work + 22 (sgen-thread-pool.c:165) [inlined]
4   WellRx.iOS                    	       0x1076d1a23 thread_func + 227 (sgen-thread-pool.c:196)
5   libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
6   libsystem_pthread.dylib       	       0x109aaabab thread_start + 15

Thread 4:: Finalizer
0   libsystem_kernel.dylib        	       0x10990c9aa semaphore_wait_trap + 10
1   WellRx.iOS                    	       0x1075ac76b mono_os_sem_wait + 11 (mono-os-semaphore.h:84) [inlined]
2   WellRx.iOS                    	       0x1075ac76b mono_coop_sem_wait + 37 (mono-coop-semaphore.h:41) [inlined]
3   WellRx.iOS                    	       0x1075ac76b finalizer_thread + 315 (gc.c:965)
4   WellRx.iOS                    	       0x107674053 start_wrapper_internal + 403 (threads.c:1233)
5   WellRx.iOS                    	       0x107673e9e start_wrapper + 62 (threads.c:1308)
6   libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
7   libsystem_pthread.dylib       	       0x109aaabab thread_start + 15

Thread 5:: com.apple.uikit.eventfetch-thread
0   libsystem_kernel.dylib        	       0x10990ca2e mach_msg2_trap + 10
1   libsystem_kernel.dylib        	       0x10991ae3a mach_msg2_internal + 84
2   libsystem_kernel.dylib        	       0x109913b62 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	       0x10990cd1f mach_msg + 19
4   CoreFoundation                	    0x7ff8003f7b33 __CFRunLoopServiceMachPort + 143
5   CoreFoundation                	    0x7ff8003f22bb __CFRunLoopRun + 1371
6   CoreFoundation                	    0x7ff8003f197d CFRunLoopRunSpecific + 557
7   Foundation                    	    0x7ff800e7ab9a -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
8   Foundation                    	    0x7ff800e7ae18 -[NSRunLoop(NSRunLoop) runUntilDate:] + 72
9   UIKitCore                     	    0x7ff805c95603 -[UIEventFetcher threadMain] + 518
10  Foundation                    	    0x7ff800ea5345 __NSThread__start__ + 1024
11  libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
12  libsystem_pthread.dylib       	       0x109aaabab thread_start + 15

Thread 6:
0   libsystem_pthread.dylib       	       0x109aaab88 start_wqthread + 0

Thread 7:: WebThread
0   libsystem_kernel.dylib        	       0x10990ca2e mach_msg2_trap + 10
1   libsystem_kernel.dylib        	       0x10991ae3a mach_msg2_internal + 84
2   libsystem_kernel.dylib        	       0x109913b62 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	       0x10990cd1f mach_msg + 19
4   CoreFoundation                	    0x7ff8003f7b33 __CFRunLoopServiceMachPort + 143
5   CoreFoundation                	    0x7ff8003f22bb __CFRunLoopRun + 1371
6   CoreFoundation                	    0x7ff8003f197d CFRunLoopRunSpecific + 557
7   WebCore                       	    0x7ff80da7af25 RunWebThread(void*) + 693
8   libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
9   libsystem_pthread.dylib       	       0x109aaabab thread_start + 15

Thread 8:: Timer-Scheduler
0   libsystem_kernel.dylib        	       0x10990f5ce __psynch_cvwait + 10
1   libsystem_pthread.dylib       	       0x109aaf76b _pthread_cond_wait + 1211
2   WellRx.iOS                    	       0x1076e2bf5 mono_os_cond_wait + 11 (mono-os-mutex.h:219) [inlined]
3   WellRx.iOS                    	       0x1076e2bf5 mono_os_cond_timedwait + 181 (mono-os-mutex.c:32)
4   WellRx.iOS                    	       0x1076815c2 mono_coop_cond_timedwait + 45 (mono-coop-mutex.h:103) [inlined]
5   WellRx.iOS                    	       0x1076815c2 mono_w32handle_timedwait_signal_naked + 45 (w32handle.c:652) [inlined]
6   WellRx.iOS                    	       0x1076815c2 mono_w32handle_timedwait_signal_handle + 210 (w32handle.c:767)
7   WellRx.iOS                    	       0x107681486 mono_w32handle_wait_one + 758
8   WellRx.iOS                    	       0x1076816f7 mono_w32handle_wait_multiple + 199 (w32handle.c:1002)
9   WellRx.iOS                    	       0x10766e4b0 ves_icall_System_Threading_WaitHandle_Wait_internal + 176 (threads.c:2314)
10  WellRx.iOS                    	       0x1075cd488 ves_icall_System_Threading_WaitHandle_Wait_internal_raw + 104 (icall-def.h:1100)
11  ???                           	       0x13f7bb328 ???
12  ???                           	       0x13f7ba6fb ???
13  ???                           	       0x13f7b9247 ???
14  ???                           	       0x13aa5c2cb ???
15  WellRx.iOS                    	       0x1074fc755 mono_jit_runtime_invoke + 1621 (mini-runtime.c:3217)
16  WellRx.iOS                    	       0x107622158 do_runtime_invoke + 54 (object.c:3052) [inlined]
17  WellRx.iOS                    	       0x107622158 mono_runtime_invoke_checked + 136 (object.c:3220)
18  WellRx.iOS                    	       0x107627c0d mono_runtime_delegate_try_invoke + 157 (object.c:4438)
19  WellRx.iOS                    	       0x107674147 start_wrapper_internal + 647 (threads.c:1255)
20  WellRx.iOS                    	       0x107673e9e start_wrapper + 62 (threads.c:1308)
21  libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
22  libsystem_pthread.dylib       	       0x109aaabab thread_start + 15

Thread 9:: */O Selector
0   libsystem_kernel.dylib        	       0x10991591e __select + 10
1   WellRx.iOS                    	       0x1076e34a2 mono_poll + 562 (mono-poll.c:114)
2   WellRx.iOS                    	       0x1076655ac poll_event_wait + 220 (threadpool-io-poll.c:153)
3   WellRx.iOS                    	       0x107665009 selector_thread + 1529 (threadpool-io.c:460)
4   WellRx.iOS                    	       0x107674053 start_wrapper_internal + 403 (threads.c:1233)
5   WellRx.iOS                    	       0x107673e9e start_wrapper + 62 (threads.c:1308)
6   libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
7   libsystem_pthread.dylib       	       0x109aaabab thread_start + 15

Thread 10:: com.apple.NSURLConnectionLoader
0   libsystem_kernel.dylib        	       0x10990ca2e mach_msg2_trap + 10
1   libsystem_kernel.dylib        	       0x10991ae3a mach_msg2_internal + 84
2   libsystem_kernel.dylib        	       0x109913b62 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	       0x10990cd1f mach_msg + 19
4   CoreFoundation                	    0x7ff8003f7b33 __CFRunLoopServiceMachPort + 143
5   CoreFoundation                	    0x7ff8003f22bb __CFRunLoopRun + 1371
6   CoreFoundation                	    0x7ff8003f197d CFRunLoopRunSpecific + 557
7   CFNetwork                     	    0x7ff8048e704b 0x7ff8046b1000 + 2318411
8   Foundation                    	    0x7ff800ea5345 __NSThread__start__ + 1024
9   libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
10  libsystem_pthread.dylib       	       0x109aaabab thread_start + 15

Thread 11:: JavaScriptCore libpas scavenger
0   libsystem_kernel.dylib        	       0x10990f5ce __psynch_cvwait + 10
1   libsystem_pthread.dylib       	       0x109aaf76b _pthread_cond_wait + 1211
2   JavaScriptCore                	    0x7ff818b7e18e scavenger_thread_main + 1374
3   libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
4   libsystem_pthread.dylib       	       0x109aaabab thread_start + 15

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

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

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

Thread 15:
0   libsystem_pthread.dylib       	       0x109aaab88 start_wqthread + 0

Thread 16:: tid_d20f
0   libsystem_kernel.dylib        	       0x10990f5ce __psynch_cvwait + 10
1   libsystem_pthread.dylib       	       0x109aaf76b _pthread_cond_wait + 1211
2   WellRx.iOS                    	       0x1076e2bf5 mono_os_cond_wait + 11 (mono-os-mutex.h:219) [inlined]
3   WellRx.iOS                    	       0x1076e2bf5 mono_os_cond_timedwait + 181 (mono-os-mutex.c:32)
4   WellRx.iOS                    	       0x1076815c2 mono_coop_cond_timedwait + 45 (mono-coop-mutex.h:103) [inlined]
5   WellRx.iOS                    	       0x1076815c2 mono_w32handle_timedwait_signal_naked + 45 (w32handle.c:652) [inlined]
6   WellRx.iOS                    	       0x1076815c2 mono_w32handle_timedwait_signal_handle + 210 (w32handle.c:767)
7   WellRx.iOS                    	       0x107681486 mono_w32handle_wait_one + 758
8   WellRx.iOS                    	       0x107613b30 mono_monitor_wait + 115 (monitor.c:1438) [inlined]
9   WellRx.iOS                    	       0x107613b30 ves_icall_System_Threading_Monitor_Monitor_wait + 432 (monitor.c:1499)
10  WellRx.iOS                    	       0x1075cbb71 ves_icall_System_Threading_Monitor_Monitor_wait_raw + 81 (icall-def.h:999)
11  ???                           	       0x15a8e16c0 ???
12  ???                           	       0x15a8df2f3 ???
13  ???                           	       0x15a8de2e3 ???
14  ???                           	       0x13aa5c2cb ???
15  WellRx.iOS                    	       0x1074fc755 mono_jit_runtime_invoke + 1621 (mini-runtime.c:3217)
16  WellRx.iOS                    	       0x107622158 do_runtime_invoke + 54 (object.c:3052) [inlined]
17  WellRx.iOS                    	       0x107622158 mono_runtime_invoke_checked + 136 (object.c:3220)
18  WellRx.iOS                    	       0x107627c0d mono_runtime_delegate_try_invoke + 157 (object.c:4438)
19  WellRx.iOS                    	       0x107674147 start_wrapper_internal + 647 (threads.c:1255)
20  WellRx.iOS                    	       0x107673e9e start_wrapper + 62 (threads.c:1308)
21  libsystem_pthread.dylib       	       0x109aaf202 _pthread_start + 99
22  libsystem_pthread.dylib       	       0x109aaabab thread_start + 15


Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007ff7b94cf928  rdx: 0x0000000000000000
  rdi: 0x0000000000000103  rsi: 0x0000000000000006  rbp: 0x00007ff7b94cf950  rsp: 0x00007ff7b94cf928
   r8: 0x0000000107c8f4d0   r9: 0x00000001084bebcb  r10: 0x0000000000000000  r11: 0x0000000000000246
  r12: 0x0000000000000103  r13: 0x00007ff7b94d0238  r14: 0x0000000108b08240  r15: 0x0000000000000016
  rip: 0x00000001099137a2  rfl: 0x0000000000000246  cr2: 0x0000000000000000
  
Logical CPU:     0
Error Code:      0x020000b8 
Trap Number:     133


Binary Images:
       0x108a5c000 -        0x108afbfff dyld (*) <ab17bf63-259b-3b48-8d70-863166a2191c> /usr/lib/dyld
       0x159867000 -        0x159868fff com.apple.CoverSheetKit.axbundle (1.0) <636b8719-b3af-3ce8-a3e5-3781f9f0c1f8> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/CoverSheetKit.axbundle/CoverSheetKit
       0x1598d3000 -        0x1598defff com.apple.AnnotationKit.axbundle (1.0) <7269e196-1f8e-3635-97d6-86c6b116f3e7> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/AnnotationKit.axbundle/AnnotationKit
       0x1598a7000 -        0x1598affff com.apple.iTunesStoreUIFramework.axbundle (1.0) <65df8c5a-4bbd-3bb4-8a5f-3f5d9b1f7a72> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/iTunesStoreUIFramework.axbundle/iTunesStoreUIFramework
       0x1597b1000 -        0x1597b2fff com.apple.SafariSharedUI.axbundle (1.0) <a3f18f4e-d9e4-3a14-ae97-c50dd9c44910> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/SafariSharedUI.axbundle/SafariSharedUI
       0x159717000 -        0x159718fff com.apple.FrontBoard.axbundle (1.0) <0ed3420e-687b-3581-9143-286bc4fef351> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/FrontBoard.axbundle/FrontBoard
       0x159936000 -        0x159959fff com.apple.PassKitUI.axbundle (1.0) <d5c988a9-14ea-3d18-9ad6-ab979fe872c4> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/PassKitUI.axbundle/PassKitUI
       0x15970a000 -        0x15970cfff com.apple.BannerKit.axbundle (1.0) <bdc30be8-344f-3c53-a28f-950d399c1782> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/BannerKit.axbundle/BannerKit
       0x1596c1000 -        0x1596c3fff com.apple.ProxCardKit.axbundle (1.0) <b3f0989d-800c-3b48-9b04-a79d3d491f48> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/ProxCardKit.axbundle/ProxCardKit
       0x1596a8000 -        0x1596adfff com.apple.SwiftUI.axbundle (1.0) <2aeb4c88-b657-3e1c-bb7c-cd4bb763f956> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/SwiftUI.axbundle/SwiftUI
       0x1597f0000 -        0x1597fffff com.apple.MobileSafariFramework.axbundle (1.0) <0b3e9115-a1cc-34f2-8fd9-808a3dc4a449> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/MobileSafariFramework.axbundle/MobileSafariFramework
       0x159689000 -        0x15968afff com.apple.AvatarKit.axbundle (1.0) <27986cce-b885-3b9a-8211-7982e02b7cbc> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/AvatarKit.axbundle/AvatarKit
       0x15967a000 -        0x15967bfff com.apple.accessibility.AppleAccountUI (1.0) <983501f5-f8b3-3319-8de8-cfb33fc3b2fe> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/AppleAccountUI.axbundle/AppleAccountUI
       0x15969c000 -        0x15969dfff com.apple.UserNotificationsUI.axbundle (1.0) <7badeef2-fc59-3bdf-974a-90d2ae712a16> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/UserNotificationsUI.axbundle/UserNotificationsUI
       0x159633000 -        0x159635fff com.apple.ActivityRingsUI.axbundle (1.0) <96b7fd33-b58c-3cf1-bb10-b843e999d1c6> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/ActivityRingsUI.axbundle/ActivityRingsUI
       0x1596d2000 -        0x1596dbfff com.apple.SpringBoardUIServices.axbundle (1.0) <e94b0e08-131f-3f97-9cbc-983afaa79dff> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/SpringBoardUIServices.axbundle/SpringBoardUIServices
       0x15961f000 -        0x159623fff com.apple.PlatterKit.axbundle (1.0) <a4613529-3680-3bed-a56c-ef312bd1bb6e> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/PlatterKit.axbundle/PlatterKit
       0x15964f000 -        0x159650fff com.apple.EmojiKit.axbundle (1.0) <d98d6e1a-67b7-3520-adbc-a56af4dcd518> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/EmojiKit.axbundle/EmojiKit
       0x159643000 -        0x159644fff com.apple.SocialLayer.axbundle (1.0) <6f5a72ee-d731-3a84-8d4b-a50bd56fd517> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/SocialLayer.axbundle/SocialLayer
       0x15972b000 -        0x159741fff com.apple.ContactsUI.axbundle (1.0) <6a2da855-12ba-329e-97ab-b328ab31dd85> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/ContactsUI.axbundle/ContactsUI
       0x1595ce000 -        0x1595cffff com.apple.ScreenshotServicesFramework.axbundle (1.0) <f1905529-674e-3781-88c7-b72aa11eb824> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/ScreenshotServicesFramework.axbundle/ScreenshotServicesFramework
       0x15965f000 -        0x159664fff com.apple.ContactsAutocompleteUI.axbundle (1.0) <67cc9d0f-b51f-3292-84f7-254cc718d365> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/ContactsAutocompleteUI.axbundle/ContactsAutocompleteUI
       0x1595bb000 -        0x1595bdfff com.apple.SpriteKit.axbundle (1.0) <9aeb617b-ac12-3862-bfcd-539c50516117> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/SpriteKit.axbundle/SpriteKit
       0x15960d000 -        0x15960ffff com.apple.PrintKitUI.axbundle (1.0) <4540834e-4c69-3f6d-9f8d-aecdead49c5e> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/PrintKitUI.axbundle/PrintKitUI
       0x1595e1000 -        0x1595e3fff com.apple.CertInfo.axbundle (1.0) <08dbb536-d6d0-3012-8b97-4f1a63f29d96> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/CertInfo.axbundle/CertInfo
       0x1595f3000 -        0x1595f8fff com.apple.VisionKitCore.axbundle (1.0) <90091fb2-8de7-32a4-ba83-6b2a1a156228> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/VisionKitCore.axbundle/VisionKitCore
       0x159560000 -        0x15956efff com.apple.PDFKit.axbundle (1.0) <18cc608c-258b-395d-9203-0b8a9c7b8b33> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/PDFKit.axbundle/PDFKit
       0x159530000 -        0x159537fff com.apple.PencilKit.axbundle (1.0) <dd2fa593-8189-3963-97f8-c8eb8cfe0bbc> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/PencilKit.axbundle/PencilKit
       0x159554000 -        0x159555fff com.apple.AppleMediaServicesUI.axbundle (1.0) <3095dc86-9843-34bc-ac73-1884dd9e52a6> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/AppleMediaServicesUI.axbundle/AppleMediaServicesUI
       0x159509000 -        0x15950dfff com.apple.Pegasus.axbundle (1.0) <d30bcf9e-232d-3985-8f9d-62836b8934f1> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/Pegasus.axbundle/Pegasus
       0x15958d000 -        0x159597fff com.apple.SafariServices.axbundle (1.0) <ebdf74ab-5dd6-3738-ae2b-3baafc77d56a> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/SafariServices.axbundle/SafariServices
       0x159524000 -        0x159525fff com.apple.BridgePreferences.axbundle (1.0) <2689d233-c4bc-3b1c-b803-8d4b9e2f9364> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/BridgePreferences.axbundle/BridgePreferences
       0x1593f2000 -        0x1593f3fff com.apple.ARKit.axbundle (1.0) <e3903854-f136-3db0-bc27-7eb48dae1518> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/ARKit.axbundle/ARKit
       0x1592b4000 -        0x1592b5fff com.apple.SharedWithYouFramework.axbundle (1.0) <5be12023-fe65-32e0-8121-8fc288301973> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/SharedWithYouFramework.axbundle/SharedWithYouFramework
       0x1593da000 -        0x1593defff com.apple.ShareSheet.axbundle (1.0) <bb9be969-dede-33e9-8b8f-5904de89f6df> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/ShareSheet.axbundle/ShareSheet
       0x1592d8000 -        0x1592dafff com.apple.StorageSettingsFramework.axbundle (1.0) <d223bb4f-3770-3e37-8842-198ef1dad3be> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/StorageSettingsFramework.axbundle/StorageSettingsFramework
       0x159285000 -        0x159292fff com.apple.AvatarUI.axbundle (1.0) <eb08a16a-c7bc-3ffb-914d-0a619a375d12> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/AvatarUI.axbundle/AvatarUI
       0x159258000 -        0x159259fff com.apple.DocumentManager.axbundle (1.0) <0b94120f-e06c-37e1-8546-367007b28542> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/DocumentManager.axbundle/DocumentManager
       0x1592c0000 -        0x1592c4fff com.apple.OnBoardingKit.axbundle (1.0) <8d81b68d-47a7-3e52-b11c-512b40a825aa> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/OnBoardingKit.axbundle/OnBoardingKit
       0x159267000 -        0x15926afff com.apple.TemplateKit.axbundle (1.0) <4a082d66-3b79-3b71-a063-e21979954831> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/TemplateKit.axbundle/TemplateKit
       0x159191000 -        0x159198fff com.apple.MapsUI.axbundle (1.0) <f5784f19-96bb-3d6e-9f18-be620fa62e6e> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/MapsUI.axbundle/MapsUI
       0x159225000 -        0x159228fff com.apple.AVFoundation.axbundle (1.0) <c7178621-18b7-303f-8542-de4e1fc7a3ba> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/AVFoundation.axbundle/AVFoundation
       0x159213000 -        0x159215fff com.apple.AuthKitUI.axbundle (1.0) <1068d251-a58d-3281-b49f-5b3957b67cb3> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/AuthKitUI.axbundle/AuthKitUI
       0x159143000 -        0x15914bfff com.apple.GameCenterUIFramework.axbundle (1.0) <e5bc05b6-3006-3e60-a60d-bc6cdcd92163> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/GameCenterUIFramework.axbundle/GameCenterUIFramework
       0x15917c000 -        0x159181fff com.apple.SpringBoardFoundation.axbundle (1.0) <6009fa80-b3ff-3cf7-97f8-7afa9f8a89c2> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/SpringBoardFoundation.axbundle/SpringBoardFoundation
       0x15910c000 -        0x159110fff com.apple.TelephonyUIFramework.axbundle (1.0) <02296604-4109-3678-a59d-4b0e475996f1> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/TelephonyUIFramework.axbundle/TelephonyUIFramework
       0x159135000 -        0x159138fff com.apple.SceneKit.axbundle (1.0) <2eaf78c4-2902-3df7-bf1b-80168fc97dac> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/SceneKit.axbundle/SceneKit
       0x13faf4000 -        0x13faf5fff com.apple.CoreIDVUI.axbundle (1.0) <5e961bbf-b5d9-3bbe-b903-9ee688b704a3> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/CoreIDVUI.axbundle/CoreIDVUI
       0x1591c0000 -        0x1591dafff com.apple.EventKitUIFramework.axbundle (1.0) <20e04202-bb4a-3e3f-a2e4-cf9c0c6cbe51> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/EventKitUIFramework.axbundle/EventKitUIFramework
       0x1592ee000 -        0x159335fff com.apple.ChatKitFramework.axbundle (1.0) <2cae9aa9-f8f4-300b-84e5-498d0af1c5ad> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/ChatKitFramework.axbundle/ChatKitFramework
       0x159100000 -        0x159101fff com.apple.BaseBoardUI.axbundle (1.0) <de4cb304-db3e-3ea1-a757-f9bd7bcd3f1c> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/BaseBoardUI.axbundle/BaseBoardUI
       0x158ff3000 -        0x158ff4fff com.apple.SearchFoundation.axbundle (1.0) <e4017882-4a32-3188-a549-6339ba13c74d> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/SearchFoundation.axbundle/SearchFoundation
       0x13fd73000 -        0x13fd7ffff com.apple.PreferencesFramework.axbundle (1.0) <39fc80a4-11d5-3463-9e65-aaec121e064b> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/PreferencesFramework.axbundle/PreferencesFramework
       0x13ffb7000 -        0x13ffc8fff com.apple.AVKit.axbundle (1.0) <1508a29f-da11-3f3a-af3b-996f1f6763dc> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/AVKit.axbundle/AVKit
       0x13ff72000 -        0x13ff83fff com.apple.MapKitFramework.axbundle (1.0) <95beb3dc-4dec-38c7-bcbf-c8d69b123a07> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/MapKitFramework.axbundle/MapKitFramework
       0x13fd00000 -        0x13fd3cfff com.apple.VectorKit.axbundle (1.0) <ddc81f22-6995-3d59-a384-d5d5b74b0d9a> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/VectorKit.axbundle/VectorKit
       0x13fab5000 -        0x13fab7fff com.apple.GeoServices.axbundle (1.0) <ce01856e-00e9-313d-9c1d-154594f0e5db> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/GeoServices.axbundle/GeoServices
       0x13fda7000 -        0x13fef9fff libquic.dylib (*) <d7aa814e-209f-325c-a7ff-247fac40a60d> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libquic.dylib
       0x109a91000 -        0x109a9dfff libobjc-trampolines.dylib (*) <d90c52be-fbd1-30b8-83a1-89789387ee29> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc-trampolines.dylib
       0x109c41000 -        0x109c77fff com.apple.MTLSimDriver (341.35) <b36bfdcc-4219-3c83-b4cf-ba66bc6a7336> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MTLSimDriver.framework/MTLSimDriver
       0x10a216000 -        0x10a242fff com.apple.gpusw.MetalSerializer (1.0) <0b871c05-45c6-336a-9377-952af116b122> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MetalSerializer.framework/MetalSerializer
       0x10a96f000 -        0x10af32fff xamarin.libskia-ios (1.0) <f357b50e-42a9-36d9-8b0f-1d66ae5214be> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/libSkiaSharp.framework/libSkiaSharp
       0x108842000 -        0x108869fff org.cocoapods.GTMSessionFetcher (1.4.0) <3d451e47-094a-3735-ac5f-28858c6b2c3b> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher
       0x108941000 -        0x108970fff org.cocoapods.GoogleAPIClientForREST (1.4.3) <96818190-d8ab-39e2-bb33-8f4b32c01e97> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/GoogleAPIClientForREST.framework/GoogleAPIClientForREST
       0x1088b2000 -        0x1088c1fff org.cocoapods.FBLPromises (1.2.10) <f542fb14-59e3-35ae-9c3c-2bef3a29cbd1> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/FBLPromises.framework/FBLPromises
       0x108b64000 -        0x108b6ffff org.cocoapods.GoogleToolboxForMac (2.2.2) <1b3ec936-6725-3b10-a0e2-ae4b058b49ec> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/GoogleToolboxForMac.framework/GoogleToolboxForMac
       0x108b8c000 -        0x108ba7fff org.cocoapods.GoogleUtilities (6.7.2) <4f24c16d-9ebe-3409-9858-fad2e696df0e> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
       0x1088e6000 -        0x1088edfff org.cocoapods.nanopb (1.30906.0) <4c428ea7-c671-39b9-8a53-6d8586bc50b7> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/nanopb.framework/nanopb
       0x109637000 -        0x10966afff org.cocoapods.leveldb (1.22.0) <f19af217-da0c-379f-8712-ef9588c46832> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/leveldb.framework/leveldb
       0x109402000 -        0x109449fff org.cocoapods.Protobuf (3.13.0) <59277af0-3602-3dee-87d2-4bc4d41f4129> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/Protobuf.framework/Protobuf
       0x1096c3000 -        0x1097defff org.cocoapods.Appboy-iOS-SDK (3.33.1) <846bab89-dc14-338b-b5cf-ccd1fea2da05> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/Appboy_iOS_SDK.framework/Appboy_iOS_SDK
       0x1094f2000 -        0x109565fff org.cocoapods.SDWebImage (5.10.4) <8d76ed85-a56f-30d5-977a-2731f4175cfd> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/Frameworks/SDWebImage.framework/SDWebImage
       0x108bd8000 -        0x108be3fff com.apple.locationd.CoreLocationUI (1.0) <2856f233-3681-34b9-822d-7837e28a67d3> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreLocationUI.framework/CoreLocationUI
       0x108a41000 -        0x108a45fff com.apple.AutomaticAssessmentConfiguration (1.0) <77c82c23-86a6-3c4a-9f03-ce6857ed1bad> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AutomaticAssessmentConfiguration.framework/AutomaticAssessmentConfiguration
       0x1083f2000 -        0x1083f3fff com.apple.ap.AdServices (1.0) <81e44216-e5cc-3ce4-971f-d41a59fe9d7a> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AdServices.framework/AdServices
       0x1095fe000 -        0x109606fff com.apple.PushToTalk (1.0) <54a572e6-88e2-37f7-8f6d-e4662d325799> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PushToTalk.framework/PushToTalk
       0x10d3fa000 -        0x10e4f7fff com.apple.MetalPerformanceShadersGraph (4.1.1) <dba46d20-db15-3d5d-96f6-43ecf214ef74> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShadersGraph.framework/MetalPerformanceShadersGraph
       0x10999c000 -        0x1099b8fff com.apple.mobileasset.BackgroundAssets (1.0) <6ec36d3f-c126-3aa4-84f0-d8f4445cf3c7> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/BackgroundAssets.framework/BackgroundAssets
       0x1099e0000 -        0x1099ebfff libsystem_platform.dylib (*) <0f4e02db-a99c-353a-a9ec-3fa83ce01236> /usr/lib/system/libsystem_platform.dylib
       0x10990b000 -        0x109946fff libsystem_kernel.dylib (*) <9927a0a9-dfa8-3ffa-88d8-62055f37a137> /usr/lib/system/libsystem_kernel.dylib
       0x109aa9000 -        0x109ab4fff libsystem_pthread.dylib (*) <a9ba8a53-d774-3fe9-8bde-64187bff7ea9> /usr/lib/system/libsystem_pthread.dylib
       0x109ad1000 -        0x109aeafff com.apple.mlcompiler.services (95) <7dcc25a8-4e35-3cca-a27d-8b9561e9d427> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MLCompilerServices.framework/MLCompilerServices
       0x109baf000 -        0x109bc0fff com.apple.AACCore (1.0) <1e0a7683-d879-31db-b0db-3f30f229cae1> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AACCore.framework/AACCore
       0x109afd000 -        0x109b1afff com.apple.AutomaticAssessmentConfiguration.AACClient (1.0) <ffe9a1df-0e86-3cc6-864c-2f220af55eb1> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AutomaticAssessmentConfiguration.framework/Frameworks/AACClient.framework/AACClient
       0x109616000 -        0x109618fff com.apple.AutomaticAssessmentConfiguration.AACDependencies (1.0) <4ec82ecb-80ea-36a5-9624-3de3fd1f5031> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AutomaticAssessmentConfiguration.framework/Frameworks/AACDependencies.framework/AACDependencies
       0x106a2d000 -        0x107aa8fff com.WellRx-XF (6.0.0) <9e21e100-95b5-3602-a228-63247f267005> /Users/USER/Library/Developer/CoreSimulator/Devices/A490A6F8-1559-4405-BC5D-33DB2C8CD6C0/data/Containers/Bundle/Application/15498D6D-2C5E-47A5-87C0-B41E682DACBE/WellRx.iOS.app/WellRx.iOS
       0x108365000 -        0x1083bcfff dyld_sim (*) <39c2d7d4-1de8-3a61-a08f-81f004308f58> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim
    0x7ff8000d0000 -     0x7ff800154fff libsystem_c.dylib (*) <362f3aff-da5e-3175-81d6-8fbba4925a8a> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_c.dylib
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
    0x7ff80036a000 -     0x7ff8006f8ff4 com.apple.CoreFoundation (6.9) <75d267fd-12bc-3192-b349-3e80ee673a5a> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
    0x7ff800773000 -     0x7ff8012d6ff6 com.apple.Foundation (6.9) <30929a90-3f75-330c-ac6b-6a79bc83b134> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Foundation.framework/Foundation
    0x7ff804bbe000 -     0x7ff8069a0ffd com.apple.UIKitCore (1.0) <12622ad2-3713-30ef-b0eb-7cd0f7397650> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
    0x7ff80cb68000 -     0x7ff80f7aafd9 com.apple.WebCore (8617) <c90ffa24-a4af-3c71-961e-c1305463386e> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/WebCore
    0x7ff8046b1000 -     0x7ff804a58ffe com.apple.CFNetwork (1.0) <b5ac37ec-798b-3f44-a3fa-71f9f6a47d3c> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CFNetwork.framework/CFNetwork
    0x7ff8173fb000 -     0x7ff818d3ef4c com.apple.JavaScriptCore (8617) <5479d3ca-e324-310f-84f4-f7bb6608a15c> /Library/Developer/CoreSimulator/Volumes/iOS_21C62/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 17.2.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore

EOF
Moshex commented

yes, I can, with the only platform not working being physical iOS devices. The iOS simulator is working just fine for me. However, I am on an older Mac that has an Intel chip and I am wondering if the new Mac M2/M3 chip is causing issues for people with memory leaks coming from Xamarin.UITest.

FYI I have confirmed this, on a Mac with the Intel chip version 4.3.2 works however on a Mac with the M3 Max chip version 4.3.2 does cause a crash

Peyzzz commented

Hi everyone,

I wanted to execute tests on real iPhone using my old repo (It works on 14.2 and Xamarin.UITest 3.2.9). I updated:
XCode 14.2=>15.2
Xamarin.UITest 3.2.8 => 4.3.3
I installed idb and added to $PATH.

przemek@Przemyslaw bin % which idb
/usr/local/bin/idb
przemek@Przemyslaw bin % idb
usage: idb [-h] [--log {DEBUG,INFO,WARNING,ERROR,CRITICAL}]
           [--compression {GZIP,ZSTD}] [--companion COMPANION]
           [--companion-path COMPANION_PATH] [--companion-tls]
           [--no-prune-dead-companion]
           {add-media,approve,boot,clear-keychain,clone,companion,connect,contacts,crash,create,daemon,dap,debugserver,delete,delete-all,describe,disconnect,dsym,dylib,erase,file,focus,framework,get,install,instruments,kill,launch,list,list-apps,list-targets,log,open,record,screenshot,send-notification,set,set-location,shell,shutdown,simulate-memory-warning,terminate,ui,uninstall,video,record-video,video-stream,xctest,xctrace}
           ...

But it seems there is a problem to install/launch DeviceAgent-Runner. I can se that main App is installingwith success afer that DeviceAgent-Runner is installing too, but without success. When I tried to launch DeviceAgent-Runner manually (by tapping icon) I receive message:
"Unable To Install "DeviceAgent-Runner" this app cannot be installed because its integrity could not be verified"

I saw that @Moshex had same repro here: #2605 (comment)

My case:

iOS test running Xamarin.UITest version: 0.0.0.0
Skipping IDE integration as important properties are configured. To force IDE integration, add .PreferIdeSettings() to ConfigureApp.
1 - LaunchTestAsync:
    deviceId: 00008020-0016455002A3002E
1 - Unsuccessful
-> error: One or more errors occurred. (Failed to install DeviceAgent
 
ExitCode: 1
Failed to install application DeviceAgent-Runner.app 0xe8008015 (A valid provisioning profile for this executable was not found.). Last event {Error => ApplicationVerificationFailed, ErrorDetail => -402620395, ErrorDescription => Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.4QfOLp/extracted/DeviceAgent-Runner.app : 0xe8008015 (A valid provisioning profile for this executable was not found.)})
Pre Reporting.InsertReportingSteps
TestError: System.AggregateException: One or more errors occurred. (Failed to install DeviceAgent
 
ExitCode: 1
Failed to install application DeviceAgent-Runner.app 0xe8008015 (A valid provisioning profile for this executable was not found.). Last event {Error => ApplicationVerificationFailed, ErrorDetail => -402620395, ErrorDescription => Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.4QfOLp/extracted/DeviceAgent-Runner.app : 0xe8008015 (A valid provisioning profile for this executable was not found.)}) ---> Xamarin.UITest.XDB.Exceptions.DeviceAgentException: Failed to install DeviceAgent
 
ExitCode: 1

Does anyone have a repro or know how to fix provisioning of DeviceAgent-Runner??

Moshex commented

@blazej-kosmowski @evgenyvalavin @IlyaBiryukov @DmitriyKirakosyan

I have done in-depth testing on Xamarin.UITest version 4.3.4 and there are some major blockers with that version.

The 1st issue with that version is that if you start Visual Studio for Mac with that version none of the tests display and when you run the test suite the following error displays :

NUnit Adapter 4.1.0.0: Test execution started
An exception occurred while invoking executor 'executor://nunit3testexecutor/': Access to the path "/usr/local/share/dotnet/sdk/7.0.312/InternalTrace.21836.log" is denied. Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please  run vstest.console.exe from a folder where you have write privileges.

given the error and looking for solutions I came across the idea to starting Visual Studio for Mac in administrator mode to get around using the following command:

sudo /Applications/Visual\ Studio.app/Contents/MacOS/VisualStudio

This allows the tests to display after that point and I can get Android to work however with iOS that is not the case. When I try to run the tests on iOS within Visual Studio for Mac in administrator mode I get the following errors:

System.AggregateException : One or more errors occurred. (file does not exist: {plistPath})

System.AggregateException : One or more errors occurred. (Failed to install DeviceAgent

ExitCode: 1
Failed to run ['--list', '1']
Result message:
System.AggregateException : One or more errors occurred. (Failed to install DeviceAgent
 
ExitCode: 1
Failed to run ['--list', '1'])
  ----> Xamarin.UITest.XDB.Exceptions.IDBException : Failed to install DeviceAgent
 
ExitCode: 1
Failed to run ['--list', '1']

All of these issues go away with Xamarin.UITest version 4.3.2 however that version causes the memory crash on the new Mac M3 chip. Also attached is an error log that occurs.

log-2024-01-25_11-06-56-593.txt

Any suggestions to work around this would be very helpful.
Thank you!

Moshex commented

Update:
I have found a fix to the permissions issues that will not require you to run Visual Studio for Mac via administrator. if you run this command sudo chmod -R 777 /usr/local/share/dotnet/sdk in terminal it will fix the issue with the tests not showing up. To run the tests on iOS you still need to run this command to fix the other issue when starting Visual Studio for Mac open -n /Applications/Visual\ Studio.app

However, after doing all this I am still getting a system crash when the device agent starts I will post the system crash log below. Any help with how to fix this would be nice!

I also want to post the error when I try to run the automation on a physical iOS device:

ExitCode: 1
Failed to install application DeviceAgent-Runner.app 0xe8008015 (A valid provisioning profile for this executable was not found.). Last event {Error => ApplicationVerificationFailed, ErrorDetail => -402620395, ErrorDescription => Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.b8hJSQ/extracted/DeviceAgent-Runner.app : 0xe8008015 (A valid provisioning profile for this executable was not found.)})
  ----> Xamarin.UITest.XDB.Exceptions.IDBException : Failed to install DeviceAgent

Thank you In advance!

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------
 
Incident Identifier: AB9E4433-942D-4319-A9B0-725DA6C66677
CrashReporter Key:   2C0A581F-0A40-E211-3AFF-73D0DC927286
Hardware Model:      Mac15,11
Process:             DeviceAgent-Runner [32981]
Path:                /Users/USER/Library/Developer/CoreSimulator/Devices/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95/data/Containers/Bundle/Application/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D/DeviceAgent-Runner.app/DeviceAgent-Runner
Identifier:          sh.calaba.DeviceAgent.xctrunner
Version:             2.7.0 (1705484284)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd_sim [32741]
Coalition:           com.apple.CoreSimulator.SimDevice.B3E22F7C-1793-4FBB-86C5-3A7A7B801D95 [23564]
Responsible Process: SimulatorTrampoline [1081]
 
Date/Time:           2024-01-29 13:24:39.8944 -0700
Launch Time:         2024-01-29 13:24:38.5483 -0700
OS Version:          macOS 14.3 (23D56)
Release Type:        User
Report Version:      104
 
Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Termination Reason: SIGNAL 6 Abort trap: 6
Terminating Process: DeviceAgent-Runner [32981]
 
Triggered by Thread:  0
 
Thread 0 Crashed::  Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	       0x1058fc9ec __pthread_kill + 8
1   libsystem_pthread.dylib       	       0x1059db1d0 pthread_kill + 256
2   libsystem_c.dylib             	       0x1801605cc abort + 104
3   DeviceAgent                   	       0x110c23980 -[CBXCUITestServer start] + 384 (CBXCUITestServer.m:93)
4   DeviceAgent                   	       0x110c237d4 +[CBXCUITestServer start] + 196 (CBXCUITestServer.m:77)
5   DeviceAgent                   	       0x110c091a0 -[TestRunner testRunner] + 48 (TestRunner.m:31)
6   CoreFoundation                	       0x180497750 __invoking___ + 144
7   CoreFoundation                	       0x180494ab4 -[NSInvocation invoke] + 276
8   XCTestCore                    	       0x105a71b58 +[XCTFailableInvocation invokeStandardConventionInvocation:completion:] + 64
9   XCTestCore                    	       0x105a71b10 __90+[XCTFailableInvocation invokeInvocation:withTestMethodConvention:lastObservedErrorIssue:]_block_invoke_3 + 24
10  XCTestCore                    	       0x105a715b8 __81+[XCTFailableInvocation invokeWithAsynchronousWait:lastObservedErrorIssue:block:]_block_invoke.5 + 80
11  XCTestCore                    	       0x105a39570 +[XCTSwiftErrorObservation observeErrorsInBlock:] + 132
12  XCTestCore                    	       0x105a7144c +[XCTFailableInvocation invokeWithAsynchronousWait:lastObservedErrorIssue:block:] + 388
13  XCTestCore                    	       0x105a718d0 +[XCTFailableInvocation invokeInvocation:withTestMethodConvention:lastObservedErrorIssue:] + 252
14  XCTestCore                    	       0x105a71bc8 +[XCTFailableInvocation invokeInvocation:lastObservedErrorIssue:] + 68
15  XCTestCore                    	       0x105a61ee4 __24-[XCTestCase invokeTest]_block_invoke.78 + 96
16  XCTestCore                    	       0x105a328cc -[XCTestCase(XCTIssueHandling) _caughtUnhandledDeveloperExceptionPermittingControlFlowInterruptions:caughtInterruptionException:whileExecutingBlock:] + 156
17  XCTestCore                    	       0x105a61b2c -[XCTestCase invokeTest] + 732
18  XCTestCore                    	       0x105a62f64 __26-[XCTestCase performTest:]_block_invoke.119 + 32
19  XCTestCore                    	       0x105a328cc -[XCTestCase(XCTIssueHandling) _caughtUnhandledDeveloperExceptionPermittingControlFlowInterruptions:caughtInterruptionException:whileExecutingBlock:] + 156
20  XCTestCore                    	       0x105a62ad4 __26-[XCTestCase performTest:]_block_invoke.110 + 404
21  XCTestCore                    	       0x105a4ba60 +[XCTContext _runInChildOfContext:forTestCase:markAsReportingBase:block:] + 172
22  XCTestCore                    	       0x105a4b98c +[XCTContext runInContextForTestCase:markAsReportingBase:block:] + 140
23  XCTestCore                    	       0x105a627a0 -[XCTestCase performTest:] + 248
24  XCTestCore                    	       0x105a22a78 -[XCTest runTest] + 44
25  XCTestCore                    	       0x105a4e300 -[XCTestSuite runTestBasedOnRepetitionPolicy:testRun:] + 64
26  XCTestCore                    	       0x105a4e1e4 __27-[XCTestSuite performTest:]_block_invoke + 160
27  XCTestCore                    	       0x105a4dcf8 __59-[XCTestSuite _performProtectedSectionForTest:testSection:]_block_invoke + 40
28  XCTestCore                    	       0x105a4ba60 +[XCTContext _runInChildOfContext:forTestCase:markAsReportingBase:block:] + 172
29  XCTestCore                    	       0x105a4b98c +[XCTContext runInContextForTestCase:markAsReportingBase:block:] + 140
30  XCTestCore                    	       0x105a4dca0 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 152
31  XCTestCore                    	       0x105a4df10 -[XCTestSuite performTest:] + 188
32  XCTestCore                    	       0x105a22a78 -[XCTest runTest] + 44
33  XCTestCore                    	       0x105a4e300 -[XCTestSuite runTestBasedOnRepetitionPolicy:testRun:] + 64
34  XCTestCore                    	       0x105a4e1e4 __27-[XCTestSuite performTest:]_block_invoke + 160
35  XCTestCore                    	       0x105a4dcf8 __59-[XCTestSuite _performProtectedSectionForTest:testSection:]_block_invoke + 40
36  XCTestCore                    	       0x105a4ba60 +[XCTContext _runInChildOfContext:forTestCase:markAsReportingBase:block:] + 172
37  XCTestCore                    	       0x105a4b98c +[XCTContext runInContextForTestCase:markAsReportingBase:block:] + 140
38  XCTestCore                    	       0x105a4dca0 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 152
39  XCTestCore                    	       0x105a4df10 -[XCTestSuite performTest:] + 188
40  XCTestCore                    	       0x105a22a78 -[XCTest runTest] + 44
41  XCTestCore                    	       0x105a4e300 -[XCTestSuite runTestBasedOnRepetitionPolicy:testRun:] + 64
42  XCTestCore                    	       0x105a4e1e4 __27-[XCTestSuite performTest:]_block_invoke + 160
43  XCTestCore                    	       0x105a4dcf8 __59-[XCTestSuite _performProtectedSectionForTest:testSection:]_block_invoke + 40
44  XCTestCore                    	       0x105a4ba60 +[XCTContext _runInChildOfContext:forTestCase:markAsReportingBase:block:] + 172
45  XCTestCore                    	       0x105a4b98c +[XCTContext runInContextForTestCase:markAsReportingBase:block:] + 140
46  XCTestCore                    	       0x105a4dca0 -[XCTestSuite _performProtectedSectionForTest:testSection:] + 152
47  XCTestCore                    	       0x105a4df10 -[XCTestSuite performTest:] + 188
48  XCTestCore                    	       0x105a22a78 -[XCTest runTest] + 44
49  XCTestCore                    	       0x105a242ec __89-[XCTTestRunSession executeTestsWithIdentifiers:skippingTestsWithIdentifiers:completion:]_block_invoke + 100
50  XCTestCore                    	       0x105a4ba60 +[XCTContext _runInChildOfContext:forTestCase:markAsReportingBase:block:] + 172
51  XCTestCore                    	       0x105a4b98c +[XCTContext runInContextForTestCase:markAsReportingBase:block:] + 140
52  XCTestCore                    	       0x105a241e8 -[XCTTestRunSession executeTestsWithIdentifiers:skippingTestsWithIdentifiers:completion:] + 252
53  XCTestCore                    	       0x105a7d9d0 __72-[XCTExecutionWorker enqueueTestIdentifiersToRun:testIdentifiersToSkip:]_block_invoke_2 + 108
54  XCTestCore                    	       0x105a7daf0 -[XCTExecutionWorker runWithError:] + 100
55  XCTestCore                    	       0x105a48f90 __25-[XCTestDriver _runTests]_block_invoke.184 + 52
56  XCTestCore                    	       0x105a2c224 -[XCTestObservationCenter _observeTestExecutionForBlock:] + 256
57  XCTestCore                    	       0x105a48c2c -[XCTestDriver _runTests] + 1016
58  XCTestCore                    	       0x105a22f60 _XCTestMain + 84
59  DeviceAgent-Runner            	       0x104911cbc _XCTRunnerRunTests + 28
60  DeviceAgent-Runner            	       0x104911ca0 __46-[_XCTRunnerAppDelegate runTestsInBackground:]_block_invoke + 12
61  CoreFoundation                	       0x1803f1ce0 __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 20
62  CoreFoundation                	       0x1803f1428 __CFRunLoopDoBlocks + 352
63  CoreFoundation                	       0x1803ebccc __CFRunLoopRun + 788
64  CoreFoundation                	       0x1803eb5a4 CFRunLoopRunSpecific + 572
65  GraphicsServices              	       0x18e9fbae4 GSEventRunModal + 160
66  UIKitCore                     	       0x1852f02e4 -[UIApplication _run] + 868
67  UIKitCore                     	       0x1852f3f5c UIApplicationMain + 124
68  DeviceAgent-Runner            	       0x104911e70 main + 160
69  dyld_sim                      	       0x104969544 start_sim + 20
70  dyld                          	       0x1049f60e0 start + 2360
 
Thread 1:
0   libsystem_pthread.dylib       	       0x1059d66dc start_wqthread + 0
 
Thread 2:
0   libsystem_pthread.dylib       	       0x1059d66dc start_wqthread + 0
 
Thread 3:
0   libsystem_pthread.dylib       	       0x1059d66dc start_wqthread + 0
 
Thread 4:: com.apple.uikit.eventfetch-thread
0   libsystem_kernel.dylib        	       0x1058f4bb0 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x105905d44 mach_msg2_internal + 76
2   libsystem_kernel.dylib        	       0x1058fcdd4 mach_msg_overwrite + 532
3   libsystem_kernel.dylib        	       0x1058f4f28 mach_msg + 20
4   CoreFoundation                	       0x1803f1754 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1803ebe34 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x1803eb5a4 CFRunLoopRunSpecific + 572
7   Foundation                    	       0x180dcd68c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208
8   Foundation                    	       0x180dcd8b0 -[NSRunLoop(NSRunLoop) runUntilDate:] + 60
9   UIKitCore                     	       0x185393b88 -[UIEventFetcher threadMain] + 404
10  Foundation                    	       0x180df3e70 __NSThread__start__ + 720
11  libsystem_pthread.dylib       	       0x1059db4c0 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x1059d66f0 thread_start + 8
 
Thread 5::  Dispatch queue: cocoa.lumberjack
0   libsystem_kernel.dylib        	       0x1058f67dc __ulock_wait + 8
1   libdispatch.dylib             	       0x18016d630 _dlock_wait + 52
2   libdispatch.dylib             	       0x18016d9a8 _dispatch_group_wait_slow + 52
3   CocoaLumberjack               	       0x10534665c -[DDLog lt_log:] + 384 (DDLog.m:809)
4   CocoaLumberjack               	       0x105344e94 __40-[DDLog queueLogMessage:asynchronously:]_block_invoke + 40 (DDLog.m:324)
5   libdispatch.dylib             	       0x18016b4f4 _dispatch_call_block_and_release + 24
6   libdispatch.dylib             	       0x18016cd3c _dispatch_client_callout + 16
7   libdispatch.dylib             	       0x180174e3c _dispatch_lane_serial_drain + 960
8   libdispatch.dylib             	       0x1801759b4 _dispatch_lane_invoke + 388
9   libdispatch.dylib             	       0x180180d40 _dispatch_root_queue_drain_deferred_wlh + 276
10  libdispatch.dylib             	       0x18018038c _dispatch_workloop_worker_thread + 448
11  libsystem_pthread.dylib       	       0x1059d7924 _pthread_wqthread + 284
12  libsystem_pthread.dylib       	       0x1059d66e4 start_wqthread + 8
 
Thread 6:
0   libsystem_pthread.dylib       	       0x1059d66dc start_wqthread + 0
 
Thread 7:
0   libsystem_pthread.dylib       	       0x1059d66dc start_wqthread + 0
 
 
Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x0000000000000000   x3: 0x0000000000000000
    x4: 0x0000000000001000   x5: 0x0000000000000019   x6: 0x0000000000000000   x7: 0x0000000000000403
    x8: 0x0000000104a94240   x9: 0x75d6a2d1a9b935a7  x10: 0x0000000000000450  x11: 0x00000000a2012023
   x12: 0x00000000000007fb  x13: 0x00000000000007fd  x14: 0x00000000a2212818  x15: 0x0000000000000018
   x16: 0x0000000000000148  x17: 0x0000000000012800  x18: 0x0000000000000000  x19: 0x0000000000000006
   x20: 0x0000000104a94240  x21: 0x0000000000000103  x22: 0x0000000104a94320  x23: 0x0000000105f11570
   x24: 0x0000600001704040  x25: 0x0000600001704040  x26: 0x0000000105abc578  x27: 0x00006000000088f0
   x28: 0x00000001f9cc3ea8   fp: 0x000000016b4ef1e0   lr: 0x00000001059db1d0
    sp: 0x000000016b4ef1c0   pc: 0x00000001058fc9ec cpsr: 0x40001000
   far: 0x0000000000000000  esr: 0x56000080  Address size fault
 
Binary Images:
       0x1049f0000 -        0x104a87fff dyld (*) <50746901-db0e-39a0-b391-baaa6b82ad0f> /usr/lib/dyld
       0x110bf8000 -        0x110c6bfff sh.calaba.DeviceAgent (2.7.0) <beb9de99-e5d5-3224-81ce-88cf7bec420d> /Users/USER/Library/Developer/CoreSimulator/Devices/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95/data/Containers/Bundle/Application/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D/DeviceAgent-Runner.app/PlugIns/DeviceAgent.xctest/DeviceAgent
       0x105340000 -        0x105357fff com.deusty.CocoaLumberjack (3.7.4) <df7a8a76-1639-31e6-a75a-22a5d02b2b59> /Users/USER/Library/Developer/CoreSimulator/Devices/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95/data/Containers/Bundle/Application/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D/DeviceAgent-Runner.app/PlugIns/DeviceAgent.xctest/Frameworks/CocoaLumberjack.framework/CocoaLumberjack
       0x104db4000 -        0x104dbffff libobjc-trampolines.dylib (*) <67a0ff9d-452e-3fe0-8b6e-ea95cf3a8b07> /Volumes/VOLUME/*/libobjc-trampolines.dylib
       0x105798000 -        0x10579bfff com.apple.dt.XCTest (14.2) <490664f5-ee26-3ce7-8407-c47312d04654> /Users/USER/Library/Developer/CoreSimulator/Devices/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95/data/Containers/Bundle/Application/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D/DeviceAgent-Runner.app/Frameworks/XCTest.framework/XCTest
       0x105a20000 -        0x105abbfff com.apple.dt.XCTestCore (14.2) <c85382ff-589b-390c-8762-b2b4acf75d13> /Users/USER/Library/Developer/CoreSimulator/Devices/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95/data/Containers/Bundle/Application/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D/DeviceAgent-Runner.app/Frameworks/XCTestCore.framework/XCTestCore
       0x105768000 -        0x10576bfff com.apple.dt.XCUnit (14.2) <96090c20-46d6-3621-94f5-45e0f395c0b2> /Users/USER/Library/Developer/CoreSimulator/Devices/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95/data/Containers/Bundle/Application/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D/DeviceAgent-Runner.app/Frameworks/XCUnit.framework/XCUnit
       0x1057c0000 -        0x10586bfff com.apple.dt.XCUIAutomation (14.2) <a18821be-00a8-3795-8a48-555068f6e8bb> /Users/USER/Library/Developer/CoreSimulator/Devices/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95/data/Containers/Bundle/Application/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D/DeviceAgent-Runner.app/Frameworks/XCUIAutomation.framework/XCUIAutomation
       0x105988000 -        0x1059affff com.apple.dt.instruments.DTXConnectionServices (15.1) <269bdec7-60d9-3600-80dd-643a232c18d6> /Volumes/VOLUME/*/DTXConnectionServices.framework/DTXConnectionServices
       0x105c8c000 -        0x105cdbfff com.apple.dt.XCTAutomationSupport (14.2) <a8b18172-be61-38e7-b232-5faced3b2e0c> /Users/USER/Library/Developer/CoreSimulator/Devices/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95/data/Containers/Bundle/Application/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D/DeviceAgent-Runner.app/Frameworks/XCTAutomationSupport.framework/XCTAutomationSupport
       0x105b54000 -        0x105bf3fff com.apple.dt.instruments.DVTInstrumentsFoundation (15.1) <eeced7f7-fee7-32c1-bc9d-ac22cca57e93> /Volumes/VOLUME/*/DVTInstrumentsFoundation.framework/DVTInstrumentsFoundation
       0x105744000 -        0x10574bfff libsystem_platform.dylib (*) <eb87a636-1812-3ea3-9c86-92a8514e814d> /usr/lib/system/libsystem_platform.dylib
       0x1058f4000 -        0x10592bfff libsystem_kernel.dylib (*) <25702128-9f93-36bc-9dbe-894348773665> /usr/lib/system/libsystem_kernel.dylib
       0x1059d4000 -        0x1059e3fff libsystem_pthread.dylib (*) <354e6cda-d434-35d7-8242-e0e8da2c5a01> /usr/lib/system/libsystem_pthread.dylib
       0x105dc8000 -        0x105de3fff com.apple.mlcompiler.services (95) <25f3a985-ceb4-3de6-be6b-d78298983f92> /Volumes/VOLUME/*/MLCompilerServices.framework/MLCompilerServices
       0x10490c000 -        0x104913fff sh.calaba.DeviceAgent.xctrunner (2.7.0) <1d3d7207-3688-3183-85da-936d57a99258> /Users/USER/Library/Developer/CoreSimulator/Devices/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95/data/Containers/Bundle/Application/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D/DeviceAgent-Runner.app/DeviceAgent-Runner
       0x104968000 -        0x1049affff dyld_sim (*) <45b5018b-7ae1-3c95-86a5-d89fd6cb36ae> /Volumes/VOLUME/*/dyld_sim
       0x1800ed000 -        0x180168ff3 libsystem_c.dylib (*) <de8d98a3-089c-3288-84e7-4e960ea3c60c> /Volumes/VOLUME/*/libsystem_c.dylib
       0x180364000 -        0x180717fff com.apple.CoreFoundation (6.9) <fc74142f-1b8b-3994-9466-f5061dd43152> /Volumes/VOLUME/*/CoreFoundation.framework/CoreFoundation
       0x18e9f8000 -        0x18ea00fff com.apple.GraphicsServices (1.0) <7cea06b5-77ce-3388-bb85-9a6942ca7f99> /Volumes/VOLUME/*/GraphicsServices.framework/GraphicsServices
       0x18471f000 -        0x186085fff com.apple.UIKitCore (1.0) <d0dea36b-57cc-3509-be3f-07785430decd> /Volumes/VOLUME/*/UIKitCore.framework/UIKitCore
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
       0x180797000 -        0x18123dfff com.apple.Foundation (6.9) <03b66a9f-be07-39ef-812d-ea7d8b87f7eb> /Volumes/VOLUME/*/Foundation.framework/Foundation
       0x180169000 -        0x1801aefff libdispatch.dylib (*) <9505af94-04cc-3037-9759-6c4dc09943ad> /Volumes/VOLUME/*/libdispatch.dylib
 
EOF
 
-----------
Full Report
-----------
 
{"app_name":"DeviceAgent-Runner","timestamp":"2024-01-29 13:24:40.00 -0700","app_version":"2.7.0","slice_uuid":"1d3d7207-3688-3183-85da-936d57a99258","build_version":"1705484284","platform":7,"bundleID":"sh.calaba.DeviceAgent.xctrunner","share_with_app_devs":1,"is_first_party":0,"bug_type":"309","os_version":"macOS 14.3 (23D56)","roots_installed":0,"name":"DeviceAgent-Runner","incident_id":"AB9E4433-942D-4319-A9B0-725DA6C66677"}
{
  "uptime" : 58000,
  "procRole" : "Foreground",
  "version" : 2,
  "userID" : 501,
  "deployVersion" : 210,
  "modelCode" : "Mac15,11",
  "coalitionID" : 23564,
  "osVersion" : {
    "train" : "macOS 14.3",
    "build" : "23D56",
    "releaseType" : "User"
  },
  "captureTime" : "2024-01-29 13:24:39.8944 -0700",
  "codeSigningMonitor" : 1,
  "incident" : "AB9E4433-942D-4319-A9B0-725DA6C66677",
  "pid" : 32981,
  "translated" : false,
  "cpuType" : "ARM-64",
  "roots_installed" : 0,
  "bug_type" : "309",
  "procLaunch" : "2024-01-29 13:24:38.5483 -0700",
  "procStartAbsTime" : 1405196444703,
  "procExitAbsTime" : 1405228741357,
  "procName" : "DeviceAgent-Runner",
  "procPath" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95\/data\/Containers\/Bundle\/Application\/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D\/DeviceAgent-Runner.app\/DeviceAgent-Runner",
  "bundleInfo" : {"CFBundleShortVersionString":"2.7.0","CFBundleVersion":"1705484284","CFBundleIdentifier":"sh.calaba.DeviceAgent.xctrunner"},
  "storeInfo" : {"deviceIdentifierForVendor":"DC908F50-450F-55D0-AB1E-324360AF132E","thirdParty":true},
  "parentProc" : "launchd_sim",
  "parentPid" : 32741,
  "coalitionName" : "com.apple.CoreSimulator.SimDevice.B3E22F7C-1793-4FBB-86C5-3A7A7B801D95",
  "crashReporterKey" : "2C0A581F-0A40-E211-3AFF-73D0DC927286",
  "responsiblePid" : 1081,
  "responsibleProc" : "SimulatorTrampoline",
  "codeSigningID" : "sh.calaba.DeviceAgent.xctrunner",
  "codeSigningTeamID" : "",
  "codeSigningFlags" : 570425857,
  "codeSigningValidationCategory" : 10,
  "codeSigningTrustLevel" : 4294967295,
  "instructionByteStream" : {"beforePC":"4wAAVP17v6n9AwCR2OL\/l78DAJH9e8GowANf1sADX9YQKYDSARAA1A==","atPC":"4wAAVP17v6n9AwCRzuL\/l78DAJH9e8GowANf1sADX9ZwCoDSARAA1A=="},
  "wakeTime" : 8775,
  "sleepWakeUUID" : "9BE928E4-E82A-447A-A712-C388C1C2B23C",
  "sip" : "enabled",
  "exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"},
  "termination" : {"flags":0,"code":6,"namespace":"SIGNAL","indicator":"Abort trap: 6","byProc":"DeviceAgent-Runner","byPid":32981},
  "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":31},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
  "faultingThread" : 0,
  "threads" : [{"triggered":true,"id":967694,"threadState":{"x":[{"value":0},{"value":0},{"value":0},{"value":0},{"value":4096},{"value":25},{"value":0},{"value":1027},{"value":4373168704,"symbolLocation":0,"symbol":"_main_thread"},{"value":8491153168833000871},{"value":1104},{"value":2717982755},{"value":2043},{"value":2045},{"value":2720081944},{"value":24},{"value":328},{"value":75776},{"value":0},{"value":6},{"value":4373168704,"symbolLocation":0,"symbol":"_main_thread"},{"value":259},{"value":4373168928,"symbolLocation":224,"symbol":"_main_thread"},{"value":4394653040},{"value":105553140400192},{"value":105553140400192},{"value":4390110584,"symbolLocation":0,"symbol":"__block_descriptor_40_e8_32s_e29_v16\u0001?0\u0001\"<XCTestObservation>\"8l"},{"value":105553116301552},{"value":8485879464,"symbolLocation":0,"symbol":"_NSConcreteStackBlock"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4389188048},"cpsr":{"value":1073745920},"fp":{"value":6095303136},"sp":{"value":6095303104},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4388276716,"matchesCrashFrame":1},"far":{"value":0}},"queue":"com.apple.main-thread","frames":[{"imageOffset":35308,"symbol":"__pthread_kill","symbolLocation":8,"imageIndex":12},{"imageOffset":29136,"symbol":"pthread_kill","symbolLocation":256,"imageIndex":13},{"imageOffset":472524,"symbol":"abort","symbolLocation":104,"imageIndex":17},{"imageOffset":178560,"sourceLine":93,"sourceFile":"CBXCUITestServer.m","symbol":"-[CBXCUITestServer start]","imageIndex":1,"symbolLocation":384},{"imageOffset":178132,"sourceLine":77,"sourceFile":"CBXCUITestServer.m","symbol":"+[CBXCUITestServer start]","imageIndex":1,"symbolLocation":196},{"imageOffset":70048,"sourceLine":31,"sourceFile":"TestRunner.m","symbol":"-[TestRunner testRunner]","imageIndex":1,"symbolLocation":48},{"imageOffset":1259344,"symbol":"__invoking___","symbolLocation":144,"imageIndex":18},{"imageOffset":1247924,"symbol":"-[NSInvocation invoke]","symbolLocation":276,"imageIndex":18},{"imageOffset":334680,"symbol":"+[XCTFailableInvocation invokeStandardConventionInvocation:completion:]","symbolLocation":64,"imageIndex":5},{"imageOffset":334608,"symbol":"__90+[XCTFailableInvocation invokeInvocation:withTestMethodConvention:lastObservedErrorIssue:]_block_invoke_3","symbolLocation":24,"imageIndex":5},{"imageOffset":333240,"symbol":"__81+[XCTFailableInvocation invokeWithAsynchronousWait:lastObservedErrorIssue:block:]_block_invoke.5","symbolLocation":80,"imageIndex":5},{"imageOffset":103792,"symbol":"+[XCTSwiftErrorObservation observeErrorsInBlock:]","symbolLocation":132,"imageIndex":5},{"imageOffset":332876,"symbol":"+[XCTFailableInvocation invokeWithAsynchronousWait:lastObservedErrorIssue:block:]","symbolLocation":388,"imageIndex":5},{"imageOffset":334032,"symbol":"+[XCTFailableInvocation invokeInvocation:withTestMethodConvention:lastObservedErrorIssue:]","symbolLocation":252,"imageIndex":5},{"imageOffset":334792,"symbol":"+[XCTFailableInvocation invokeInvocation:lastObservedErrorIssue:]","symbolLocation":68,"imageIndex":5},{"imageOffset":270052,"symbol":"__24-[XCTestCase invokeTest]_block_invoke.78","symbolLocation":96,"imageIndex":5},{"imageOffset":75980,"symbol":"-[XCTestCase(XCTIssueHandling) _caughtUnhandledDeveloperExceptionPermittingControlFlowInterruptions:caughtInterruptionException:whileExecutingBlock:]","symbolLocation":156,"imageIndex":5},{"imageOffset":269100,"symbol":"-[XCTestCase invokeTest]","symbolLocation":732,"imageIndex":5},{"imageOffset":274276,"symbol":"__26-[XCTestCase performTest:]_block_invoke.119","symbolLocation":32,"imageIndex":5},{"imageOffset":75980,"symbol":"-[XCTestCase(XCTIssueHandling) _caughtUnhandledDeveloperExceptionPermittingControlFlowInterruptions:caughtInterruptionException:whileExecutingBlock:]","symbolLocation":156,"imageIndex":5},{"imageOffset":273108,"symbol":"__26-[XCTestCase performTest:]_block_invoke.110","symbolLocation":404,"imageIndex":5},{"imageOffset":178784,"symbol":"+[XCTContext _runInChildOfContext:forTestCase:markAsReportingBase:block:]","symbolLocation":172,"imageIndex":5},{"imageOffset":178572,"symbol":"+[XCTContext runInContextForTestCase:markAsReportingBase:block:]","symbolLocation":140,"imageIndex":5},{"imageOffset":272288,"symbol":"-[XCTestCase performTest:]","symbolLocation":248,"imageIndex":5},{"imageOffset":10872,"symbol":"-[XCTest runTest]","symbolLocation":44,"imageIndex":5},{"imageOffset":189184,"symbol":"-[XCTestSuite runTestBasedOnRepetitionPolicy:testRun:]","symbolLocation":64,"imageIndex":5},{"imageOffset":188900,"symbol":"__27-[XCTestSuite performTest:]_block_invoke","symbolLocation":160,"imageIndex":5},{"imageOffset":187640,"symbol":"__59-[XCTestSuite _performProtectedSectionForTest:testSection:]_block_invoke","symbolLocation":40,"imageIndex":5},{"imageOffset":178784,"symbol":"+[XCTContext _runInChildOfContext:forTestCase:markAsReportingBase:block:]","symbolLocation":172,"imageIndex":5},{"imageOffset":178572,"symbol":"+[XCTContext runInContextForTestCase:markAsReportingBase:block:]","symbolLocation":140,"imageIndex":5},{"imageOffset":187552,"symbol":"-[XCTestSuite _performProtectedSectionForTest:testSection:]","symbolLocation":152,"imageIndex":5},{"imageOffset":188176,"symbol":"-[XCTestSuite performTest:]","symbolLocation":188,"imageIndex":5},{"imageOffset":10872,"symbol":"-[XCTest runTest]","symbolLocation":44,"imageIndex":5},{"imageOffset":189184,"symbol":"-[XCTestSuite runTestBasedOnRepetitionPolicy:testRun:]","symbolLocation":64,"imageIndex":5},{"imageOffset":188900,"symbol":"__27-[XCTestSuite performTest:]_block_invoke","symbolLocation":160,"imageIndex":5},{"imageOffset":187640,"symbol":"__59-[XCTestSuite _performProtectedSectionForTest:testSection:]_block_invoke","symbolLocation":40,"imageIndex":5},{"imageOffset":178784,"symbol":"+[XCTContext _runInChildOfContext:forTestCase:markAsReportingBase:block:]","symbolLocation":172,"imageIndex":5},{"imageOffset":178572,"symbol":"+[XCTContext runInContextForTestCase:markAsReportingBase:block:]","symbolLocation":140,"imageIndex":5},{"imageOffset":187552,"symbol":"-[XCTestSuite _performProtectedSectionForTest:testSection:]","symbolLocation":152,"imageIndex":5},{"imageOffset":188176,"symbol":"-[XCTestSuite performTest:]","symbolLocation":188,"imageIndex":5},{"imageOffset":10872,"symbol":"-[XCTest runTest]","symbolLocation":44,"imageIndex":5},{"imageOffset":189184,"symbol":"-[XCTestSuite runTestBasedOnRepetitionPolicy:testRun:]","symbolLocation":64,"imageIndex":5},{"imageOffset":188900,"symbol":"__27-[XCTestSuite performTest:]_block_invoke","symbolLocation":160,"imageIndex":5},{"imageOffset":187640,"symbol":"__59-[XCTestSuite _performProtectedSectionForTest:testSection:]_block_invoke","symbolLocation":40,"imageIndex":5},{"imageOffset":178784,"symbol":"+[XCTContext _runInChildOfContext:forTestCase:markAsReportingBase:block:]","symbolLocation":172,"imageIndex":5},{"imageOffset":178572,"symbol":"+[XCTContext runInContextForTestCase:markAsReportingBase:block:]","symbolLocation":140,"imageIndex":5},{"imageOffset":187552,"symbol":"-[XCTestSuite _performProtectedSectionForTest:testSection:]","symbolLocation":152,"imageIndex":5},{"imageOffset":188176,"symbol":"-[XCTestSuite performTest:]","symbolLocation":188,"imageIndex":5},{"imageOffset":10872,"symbol":"-[XCTest runTest]","symbolLocation":44,"imageIndex":5},{"imageOffset":17132,"symbol":"__89-[XCTTestRunSession executeTestsWithIdentifiers:skippingTestsWithIdentifiers:completion:]_block_invoke","symbolLocation":100,"imageIndex":5},{"imageOffset":178784,"symbol":"+[XCTContext _runInChildOfContext:forTestCase:markAsReportingBase:block:]","symbolLocation":172,"imageIndex":5},{"imageOffset":178572,"symbol":"+[XCTContext runInContextForTestCase:markAsReportingBase:block:]","symbolLocation":140,"imageIndex":5},{"imageOffset":16872,"symbol":"-[XCTTestRunSession executeTestsWithIdentifiers:skippingTestsWithIdentifiers:completion:]","symbolLocation":252,"imageIndex":5},{"imageOffset":383440,"symbol":"__72-[XCTExecutionWorker enqueueTestIdentifiersToRun:testIdentifiersToSkip:]_block_invoke_2","symbolLocation":108,"imageIndex":5},{"imageOffset":383728,"symbol":"-[XCTExecutionWorker runWithError:]","symbolLocation":100,"imageIndex":5},{"imageOffset":167824,"symbol":"__25-[XCTestDriver _runTests]_block_invoke.184","symbolLocation":52,"imageIndex":5},{"imageOffset":49700,"symbol":"-[XCTestObservationCenter _observeTestExecutionForBlock:]","symbolLocation":256,"imageIndex":5},{"imageOffset":166956,"symbol":"-[XCTestDriver _runTests]","symbolLocation":1016,"imageIndex":5},{"imageOffset":12128,"symbol":"_XCTestMain","symbolLocation":84,"imageIndex":5},{"imageOffset":23740,"symbol":"_XCTRunnerRunTests","symbolLocation":28,"imageIndex":15},{"imageOffset":23712,"symbol":"__46-[_XCTRunnerAppDelegate runTestsInBackground:]_block_invoke","symbolLocation":12,"imageIndex":15},{"imageOffset":580832,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__","symbolLocation":20,"imageIndex":18},{"imageOffset":578600,"symbol":"__CFRunLoopDoBlocks","symbolLocation":352,"imageIndex":18},{"imageOffset":556236,"symbol":"__CFRunLoopRun","symbolLocation":788,"imageIndex":18},{"imageOffset":554404,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":18},{"imageOffset":15076,"symbol":"GSEventRunModal","symbolLocation":160,"imageIndex":19},{"imageOffset":12391140,"symbol":"-[UIApplication _run]","symbolLocation":868,"imageIndex":20},{"imageOffset":12406620,"symbol":"UIApplicationMain","symbolLocation":124,"imageIndex":20},{"imageOffset":24176,"symbol":"main","symbolLocation":160,"imageIndex":15},{"imageOffset":5444,"symbol":"start_sim","symbolLocation":20,"imageIndex":16},{"imageOffset":24800,"symbol":"start","symbolLocation":2360,"imageIndex":0}]},{"id":967780,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"x":[{"value":6095876096},{"value":3843},{"value":6095339520},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6095876096},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4389168860},"far":{"value":0}}},{"id":967781,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"x":[{"value":6096449536},{"value":4099},{"value":6095912960},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6096449536},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4389168860},"far":{"value":0}}},{"id":967782,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"x":[{"value":6097022976},{"value":8707},{"value":6096486400},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6097022976},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4389168860},"far":{"value":0}}},{"id":967783,"name":"com.apple.uikit.eventfetch-thread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":42893838385152},{"value":2162692},{"value":42893838385152},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":9987},{"value":0},{"value":1},{"value":9987},{"value":3072},{"value":2043},{"value":2338449403},{"value":18446744073709551569},{"value":60},{"value":0},{"value":4294967295},{"value":2},{"value":42893838385152},{"value":2162692},{"value":42893838385152},{"value":6097591672},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4388314436},"cpsr":{"value":4096},"fp":{"value":6097591520},"sp":{"value":6097591440},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4388244400},"far":{"value":0}},"frames":[{"imageOffset":2992,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":12},{"imageOffset":73028,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":12},{"imageOffset":36308,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":12},{"imageOffset":3880,"symbol":"mach_msg","symbolLocation":20,"imageIndex":12},{"imageOffset":579412,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":18},{"imageOffset":556596,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":18},{"imageOffset":554404,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":18},{"imageOffset":6514316,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":22},{"imageOffset":6514864,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":60,"imageIndex":22},{"imageOffset":13061000,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":404,"imageIndex":20},{"imageOffset":6671984,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":22},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":13},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":13}]},{"id":967784,"threadState":{"x":[{"value":0},{"value":0},{"value":32},{"value":0},{"value":16},{"value":0},{"value":0},{"value":1027},{"value":105553151051488},{"value":141733920760},{"value":141733920760},{"value":141733920761},{"value":105553151051536},{"value":4613854224},{"value":144115196421451441,"symbolLocation":144115188075855873,"symbol":"OBJC_CLASS_$___NSArrayM"},{"value":8345595568,"symbolLocation":0,"symbol":"OBJC_CLASS_$___NSArrayM"},{"value":515},{"value":2},{"value":0},{"value":32},{"value":0},{"value":105553151051540},{"value":16777217},{"value":105553151051488},{"value":105553162785664},{"value":2},{"value":8589934595},{"value":8485879464,"symbolLocation":0,"symbol":"_NSConcreteStackBlock"},{"sourceLine":804,"value":4382287796,"sourceFile":"DDLog.m","symbol":"__16-[DDLog lt_log:]_block_invoke","symbolLocation":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6443947568},"cpsr":{"value":1073745920},"fp":{"value":6098167216},"sp":{"value":6098167184},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4388251612},"far":{"value":0}},"queue":"cocoa.lumberjack","frames":[{"imageOffset":10204,"symbol":"__ulock_wait","symbolLocation":8,"imageIndex":12},{"imageOffset":17968,"symbol":"_dlock_wait","symbolLocation":52,"imageIndex":23},{"imageOffset":18856,"symbol":"_dispatch_group_wait_slow","symbolLocation":52,"imageIndex":23},{"imageOffset":26204,"sourceLine":809,"sourceFile":"DDLog.m","symbol":"-[DDLog lt_log:]","imageIndex":2,"symbolLocation":384},{"imageOffset":20116,"sourceLine":324,"sourceFile":"DDLog.m","symbol":"__40-[DDLog queueLogMessage:asynchronously:]_block_invoke","imageIndex":2,"symbolLocation":40},{"imageOffset":9460,"symbol":"_dispatch_call_block_and_release","symbolLocation":24,"imageIndex":23},{"imageOffset":15676,"symbol":"_dispatch_client_callout","symbolLocation":16,"imageIndex":23},{"imageOffset":48700,"symbol":"_dispatch_lane_serial_drain","symbolLocation":960,"imageIndex":23},{"imageOffset":51636,"symbol":"_dispatch_lane_invoke","symbolLocation":388,"imageIndex":23},{"imageOffset":97600,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":276,"imageIndex":23},{"imageOffset":95116,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":448,"imageIndex":23},{"imageOffset":14628,"symbol":"_pthread_wqthread","symbolLocation":284,"imageIndex":13},{"imageOffset":9956,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":13}]},{"id":967785,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"x":[{"value":6098743296},{"value":12547},{"value":6098206720},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6098743296},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4389168860},"far":{"value":0}}},{"id":967803,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"x":[{"value":6099316736},{"value":0},{"value":6098780160},{"value":0},{"value":278532},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6099316736},"esr":{"value":0,"description":" Address size fault"},"pc":{"value":4389168860},"far":{"value":0}}}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 4372496384,
    "size" : 622592,
    "uuid" : "50746901-db0e-39a0-b391-baaa6b82ad0f",
    "path" : "\/usr\/lib\/dyld",
    "name" : "dyld"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4575952896,
    "CFBundleShortVersionString" : "2.7.0",
    "CFBundleIdentifier" : "sh.calaba.DeviceAgent",
    "size" : 475136,
    "uuid" : "beb9de99-e5d5-3224-81ce-88cf7bec420d",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95\/data\/Containers\/Bundle\/Application\/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D\/DeviceAgent-Runner.app\/PlugIns\/DeviceAgent.xctest\/DeviceAgent",
    "name" : "DeviceAgent",
    "CFBundleVersion" : "1705484284"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4382261248,
    "CFBundleShortVersionString" : "3.7.4",
    "CFBundleIdentifier" : "com.deusty.CocoaLumberjack",
    "size" : 98304,
    "uuid" : "df7a8a76-1639-31e6-a75a-22a5d02b2b59",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95\/data\/Containers\/Bundle\/Application\/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D\/DeviceAgent-Runner.app\/PlugIns\/DeviceAgent.xctest\/Frameworks\/CocoaLumberjack.framework\/CocoaLumberjack",
    "name" : "CocoaLumberjack",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4376444928,
    "size" : 49152,
    "uuid" : "67a0ff9d-452e-3fe0-8b6e-ea95cf3a8b07",
    "path" : "\/Volumes\/VOLUME\/*\/libobjc-trampolines.dylib",
    "name" : "libobjc-trampolines.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4386816000,
    "CFBundleShortVersionString" : "14.2",
    "CFBundleIdentifier" : "com.apple.dt.XCTest",
    "size" : 16384,
    "uuid" : "490664f5-ee26-3ce7-8407-c47312d04654",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95\/data\/Containers\/Bundle\/Application\/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D\/DeviceAgent-Runner.app\/Frameworks\/XCTest.framework\/XCTest",
    "name" : "XCTest",
    "CFBundleVersion" : "21501"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4389470208,
    "CFBundleShortVersionString" : "14.2",
    "CFBundleIdentifier" : "com.apple.dt.XCTestCore",
    "size" : 638976,
    "uuid" : "c85382ff-589b-390c-8762-b2b4acf75d13",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95\/data\/Containers\/Bundle\/Application\/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D\/DeviceAgent-Runner.app\/Frameworks\/XCTestCore.framework\/XCTestCore",
    "name" : "XCTestCore",
    "CFBundleVersion" : "21501"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4386619392,
    "CFBundleShortVersionString" : "14.2",
    "CFBundleIdentifier" : "com.apple.dt.XCUnit",
    "size" : 16384,
    "uuid" : "96090c20-46d6-3621-94f5-45e0f395c0b2",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95\/data\/Containers\/Bundle\/Application\/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D\/DeviceAgent-Runner.app\/Frameworks\/XCUnit.framework\/XCUnit",
    "name" : "XCUnit",
    "CFBundleVersion" : "21501"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4386979840,
    "CFBundleShortVersionString" : "14.2",
    "CFBundleIdentifier" : "com.apple.dt.XCUIAutomation",
    "size" : 704512,
    "uuid" : "a18821be-00a8-3795-8a48-555068f6e8bb",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95\/data\/Containers\/Bundle\/Application\/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D\/DeviceAgent-Runner.app\/Frameworks\/XCUIAutomation.framework\/XCUIAutomation",
    "name" : "XCUIAutomation",
    "CFBundleVersion" : "21501"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4388847616,
    "CFBundleShortVersionString" : "15.1",
    "CFBundleIdentifier" : "com.apple.dt.instruments.DTXConnectionServices",
    "size" : 163840,
    "uuid" : "269bdec7-60d9-3600-80dd-643a232c18d6",
    "path" : "\/Volumes\/VOLUME\/*\/DTXConnectionServices.framework\/DTXConnectionServices",
    "name" : "DTXConnectionServices",
    "CFBundleVersion" : "64562.3.1.1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4392009728,
    "CFBundleShortVersionString" : "14.2",
    "CFBundleIdentifier" : "com.apple.dt.XCTAutomationSupport",
    "size" : 327680,
    "uuid" : "a8b18172-be61-38e7-b232-5faced3b2e0c",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95\/data\/Containers\/Bundle\/Application\/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D\/DeviceAgent-Runner.app\/Frameworks\/XCTAutomationSupport.framework\/XCTAutomationSupport",
    "name" : "XCTAutomationSupport",
    "CFBundleVersion" : "21501"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4390731776,
    "CFBundleShortVersionString" : "15.1",
    "CFBundleIdentifier" : "com.apple.dt.instruments.DVTInstrumentsFoundation",
    "size" : 655360,
    "uuid" : "eeced7f7-fee7-32c1-bc9d-ac22cca57e93",
    "path" : "\/Volumes\/VOLUME\/*\/DVTInstrumentsFoundation.framework\/DVTInstrumentsFoundation",
    "name" : "DVTInstrumentsFoundation",
    "CFBundleVersion" : "64562.3.1.1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4386471936,
    "size" : 32768,
    "uuid" : "eb87a636-1812-3ea3-9c86-92a8514e814d",
    "path" : "\/usr\/lib\/system\/libsystem_platform.dylib",
    "name" : "libsystem_platform.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4388241408,
    "size" : 229376,
    "uuid" : "25702128-9f93-36bc-9dbe-894348773665",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4389158912,
    "size" : 65536,
    "uuid" : "354e6cda-d434-35d7-8242-e0e8da2c5a01",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4393304064,
    "CFBundleShortVersionString" : "95",
    "CFBundleIdentifier" : "com.apple.mlcompiler.services",
    "size" : 114688,
    "uuid" : "25f3a985-ceb4-3de6-be6b-d78298983f92",
    "path" : "\/Volumes\/VOLUME\/*\/MLCompilerServices.framework\/MLCompilerServices",
    "name" : "MLCompilerServices",
    "CFBundleVersion" : "95"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4371562496,
    "CFBundleShortVersionString" : "2.7.0",
    "CFBundleIdentifier" : "sh.calaba.DeviceAgent.xctrunner",
    "size" : 32768,
    "uuid" : "1d3d7207-3688-3183-85da-936d57a99258",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/B3E22F7C-1793-4FBB-86C5-3A7A7B801D95\/data\/Containers\/Bundle\/Application\/6964A58B-CE0B-4BFC-9BFB-71D6CE27634D\/DeviceAgent-Runner.app\/DeviceAgent-Runner",
    "name" : "DeviceAgent-Runner",
    "CFBundleVersion" : "1705484284"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4371939328,
    "size" : 294912,
    "uuid" : "45b5018b-7ae1-3c95-86a5-d89fd6cb36ae",
    "path" : "\/Volumes\/VOLUME\/*\/dyld_sim",
    "name" : "dyld_sim"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6443421696,
    "size" : 507892,
    "uuid" : "de8d98a3-089c-3288-84e7-4e960ea3c60c",
    "path" : "\/Volumes\/VOLUME\/*\/libsystem_c.dylib",
    "name" : "libsystem_c.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6446006272,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.CoreFoundation",
    "size" : 3883008,
    "uuid" : "fc74142f-1b8b-3994-9466-f5061dd43152",
    "path" : "\/Volumes\/VOLUME\/*\/CoreFoundation.framework\/CoreFoundation",
    "name" : "CoreFoundation",
    "CFBundleVersion" : "2202"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6687784960,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.GraphicsServices",
    "size" : 36864,
    "uuid" : "7cea06b5-77ce-3388-bb85-9a6942ca7f99",
    "path" : "\/Volumes\/VOLUME\/*\/GraphicsServices.framework\/GraphicsServices",
    "name" : "GraphicsServices",
    "CFBundleVersion" : "1.0"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6517026816,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.UIKitCore",
    "size" : 26636288,
    "uuid" : "d0dea36b-57cc-3509-be3f-07785430decd",
    "path" : "\/Volumes\/VOLUME\/*\/UIKitCore.framework\/UIKitCore",
    "name" : "UIKitCore",
    "CFBundleVersion" : "7209.1.104"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6450409472,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.Foundation",
    "size" : 11169792,
    "uuid" : "03b66a9f-be07-39ef-812d-ea7d8b87f7eb",
    "path" : "\/Volumes\/VOLUME\/*\/Foundation.framework\/Foundation",
    "name" : "Foundation",
    "CFBundleVersion" : "2202"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6443929600,
    "size" : 286720,
    "uuid" : "9505af94-04cc-3037-9759-6c4dc09943ad",
    "path" : "\/Volumes\/VOLUME\/*\/libdispatch.dylib",
    "name" : "libdispatch.dylib"
  }
],
  "sharedCache" : {
  "base" : 6442450944,
  "size" : 2846113792,
  "uuid" : "caa2fd10-acdc-32ca-b705-b5b243699bc0"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=1.3G resident=0K(0%) swapped_out_or_unallocated=1.3G(100%)\nWritable regions: Total=1.0G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.0G(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nActivity Tracing                   256K        1 \nColorSync                           64K        2 \nFoundation                          16K        1 \nKernel Alloc Once                   32K        1 \nMALLOC                             1.0G       55 \nMALLOC guard page                  384K       24 \nSTACK GUARD                       56.1M        8 \nStack                             11.7M        8 \nVM_ALLOCATE                         32K        1 \n__DATA                            17.2M      600 \n__DATA_CONST                      58.3M      624 \n__DATA_DIRTY                       107K        9 \n__FONT_DATA                          4K        1 \n__LINKEDIT                       736.6M       18 \n__LLVM                              16K        1 \n__OBJC_RO                         66.6M        1 \n__OBJC_RW                         2196K        1 \n__TEXT                           597.7M      635 \ndyld private memory               1360K       10 \nmapped file                       31.6M        5 \nshared memory                       16K        1 \n===========                     =======  ======= \nTOTAL                              2.5G     2007 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "queue" : "com.apple.main-thread"
  }
},
  "logWritingSignature" : "51516828d97a4167a9d87d8c2f0b51f9e2262e1e",
  "trialInfo" : {
  "rollouts" : [
    {
      "rolloutId" : "60f8ddccefea4203d95cbeef",
      "factorPackIds" : {
 
      },
      "deploymentId" : 240000025
    },
    {
      "rolloutId" : "5fb4245a1bbfe8005e33a1e1",
      "factorPackIds" : {
 
      },
      "deploymentId" : 240000021
    }
  ],
  "experiments" : [
 
  ]
}
}
 
Model: Mac15,11, BootROM 10151.81.1, proc 14:10:4 processors, 36 GB, SMC 
Graphics: Apple M3 Max, Apple M3 Max, Built-In
Display: Color LCD, 3456 x 2234 Retina, Main, MirrorOff, Online
Memory Module: LPDDR5, Micron
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4388), wl0: Dec 15 2023 23:28:34 version 23.10.765.20.41.51.129 FWID 01-9b7ed8b7
AirPort: 
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB31Bus
USB Device: USB31Bus
USB Device: USB31Bus
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.

Ive just upgraded a number of test project and have found this issue, can someone point me at the documentation that describes what needs to be installed? Im referring to official documentation from MS, Im sure that must exist, right?
We are running UI tests on 20 paid for Azure pipeline hosts concurrently, with this version we can't without installing multiple dependencies, further complicating our pipeline yaml.

Guys, this is a mess. If I have to unpick all these dependencies to install via CLI in yaml, I might as well move to Appium as we know that already works. It's a pain in the ar$e to configure, but this now looks to be just as bad so might as well move now. For now Ive had to revert to 4.1.4. (4.2 and 4.3.1 had other errors that I don't have time to unpick).

Moshex commented

@JohnHDev
Thank you for your input, I hope they fix these issues soon. The thing that is bothering me is why there aren't more people raising the red flag on this? does that mean version 4.3.4 works for some and not others? I wish those who have this version working for them would speak up and say how they got it working. My only other assumption is that people are only running it on Android and if that is the case then this version works just fine for them. Also if you just run on app center VS locally the same can be said as well.

I'll join this thread

  • (Rider 2023.2.3 and Visual Studio 17.6.8)
  • Xamarin.UITest 4.3.3 / 4.3.4
  • IOS 17.3
  • MacOs 14.1 (23B74)
  • Xcode 15.2

ExitCode: 1 Failed to install application DeviceAgent-Runner.app 0xe8008015 (A valid provisioning profile for this executable was not found.). Last event {Error => ApplicationVerificationFailed, ErrorDetail => -402620395, ErrorDescription => Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.J7154E/extracted/DeviceAgent-Runner.app : 0xe8008015 (A valid provisioning profile for this executable was not found.)}) ----> Xamarin.UITest.XDB.Exceptions.IDBException : Failed to install DeviceAgent

Thank you to everyone who reached out and contributed to addressing this issue by sharing your logs and error details.

We have identified the problem and are currently prioritizing its resolution. The issue stems from a combination of updates in Xcode 14/iOS 16 and our recent code refactoring efforts to accommodate the updated API.

I'm closing this issue as a duplicate of #2536. Please follow the progress and continue the discussion in the original thread.

We apologize for the delayed response and for maintaining two threads for an extended period.

@DmitriyKirakosyan what is the resolution that you mentioned? Is installing idb still required? If so, where are the release notes and documentation that covers this? I have installed 4.3.5 and still getting the error.

Xamarin 4.3.7 gives you an ability to give idb path to the framework:

ConfigureApp.iOS.OverrideIDBPath

Thank you. It seems it works

@JohnHDev
I know you are looking for documentation and I wish they had that, but with version 4.3.7 it does make it so that the most annoying part of idb is resolved. I will post my internal documentation that I have been able to work with many other developers in my company to get iOS to work for them.

  • This is a temporary fix to allow iOS to run with Xamarin.UITest

         1. Make sure you have Python installed in version 3.6 or higher
         2. Make sure you have pip installed
         3. Install idb according to what we have here https://fbidb.io/docs/installation/ but with slightly modified commands
            brew tap facebook/fb
            brew install idb-companion
            pip3 install --user fb-idb
    
         (steps 4 - 8 my no longer be needed thanks to OverrideIDBPath function)
         4. Add an entry to PATH that includes the path to idb (for example /Users/temp/Library/Python/3.9/bin)
         5. Update changes by source ~/.bash_profile
         6. Restart the computer
    
            In my case, I added the PATH in ~/.zshrc (es. export PATH="/Users/xxx/Library/Python/3.11/bin:$PATH" )
            or like this in my .zprofile:
            export PATH="/Library/Frameworks/Python.framework/Versions/3.12/bin:${PATH}"
            export PATH
    
         7. use this command to give permissions: sudo chmod -R 777 /usr/local/share/dotnet/sdk
         8. use this command to start Visual Studio: open -n /Applications/Visual\ Studio.app
    

now you can skip steps 4 - 8 (maybe not steps 7 pending on your setup) if you have the following in your app start-up:

            return ConfigureApp
            .iOS
            .WaitTimes(new CustomWaitTimes())
            .DeviceIdentifier(deviceId)
            .InstalledApp(AppConstants.iOSBundleId)
            .OverrideIDBPath("/Library/Frameworks/Python.framework/Versions/3.12/bin/idb")
            .EnableLocalScreenshots()
            .DisableSpecFlowIntegration()
            .StartApp(AppDataMode.Auto);

I hope this helps with your update journey.

@Moshex thanks, figured out how to install idb via CLI and have it running locally and on ADO pipelines. If anything it seems more stable and possibly even a little quicker!

That's good to hear!