Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install crashlytics build in iOS simulator

How can install a Crashlytics build in an iOS simulator?

When I open the email invite I get in the simulator I get an error which says "Safari cannot open this page because the address is invalid"(screenshot attached).

enter image description here

The url looks like the one below,

enter image description here

I checked 'settings' for the Crashlytics profile and it seems that it is also not installed.

I tried to look for a way I could get a .ipa file from Crashlytics, but had no luck with that.

like image 644
ThE uSeFuL Avatar asked Dec 28 '25 00:12

ThE uSeFuL


1 Answers

You cannot open an itms-services:// link on the Simulator. If you have received a Crashlytics beta invite, that app is only for use on actual device.

The reason is that device builds are build for the ARM architecture, while simulator builds are built for the i386 architecture. Simulator and device builds are not compatible with each other.

like image 188
JAL Avatar answered Dec 30 '25 16:12

JAL