I received a .ips file from Apple today saying that one of my 12 Apps won’t work with Apple Vision with the message
“Your app crashed or froze at launch on Apple Vision Pro. We recommend testing your app in the visionOS simulator in Xcode to identify and address the issue.”
I was going to use Greg’s IOS Symbolicator but it doesn’t take .ips files so I tried this script from Github without success
You can actually look at the file, specifically in the first set of “frames” (which would be the main thread) and see what the problem is by reading from the bottom up:
The relevant frames are:
-[XOJTimerAdapter timerFireMethod:]
followed by:
UnhandledException(RuntimeObject*)
Assuming you have a timer in your app, the code inside the action/run event is causing an exception and it is not being handled in App.UnhandledException.
I have a few of those so I will check. The easier solution is just to make the App not available on the New App Store site as it probably isn’t that relevant.