Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing a TestFlight app on iOS iPhone Simulator - Registration Failed

Tags:

I'm attempting to install a TestFlight app on XCode's iOS simulator using the iPhone simulator. The link to the TestFlight app takes me to a page that says "This device will need to be registered before it can install betas."

There is a friendly Register button. When I click the register button, it says "Registering Device" and then it takes me to the iPhone's General settings page. If I navigate back to the TestFlight page, it says "Registration Failed."

Does anyone know of a way to install a TestFlight app on the iPhone Simulator? Thanks.

like image 265
emery Avatar asked Aug 13 '12 21:08

emery


People also ask

How do I install TestFlight app on Iphone?

Install TestFlight on the iOS or iPadOS device that you'll use for testing. Open your email invitation or tap the public link on your device. When installing via email invitation, tap “View in TestFlight” or “Start testing” then tap “Install” or “Update” for the app you want to test.

Is TestFlight tied to Apple ID?

TestFlight forces you to use your iTunes Apple ID, which means whenever I want to either go into TestFlight or go to buy music, I have to switch credentials.

Can you install apps on iOS simulator?

Install Apps on SimulatorsTo install an app on a connected simulator, follow these steps. Go to Apps > Install Application. Find and open the app you want to install from your Mac. The app appears in the list of installed apps on the right side of the iOS Gateway window.


1 Answers

The app you are trying to install is an app compiled for arm architecture, which is different from the simulator (the simulator is not an emulator). The simulator only runs x86 apps compiled for it. You will need to contact the developer of the application to send you the x86 binaries, and add them directly to the application directory of the iOS simulator. The directory (on Xcode 4.5 beta 4) is /Applications/Xcode45-DP4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/Applications. Note that the simulator's sdk version has to match the version of iOS you are trying to use the simulator with.

like image 161
J2theC Avatar answered Sep 18 '22 09:09

J2theC