Question

Expo app works in simulator, crashes on a real iPhone at startup

Open · 16 views · asked by ben_mobile · edited

Claude Code set up Expo for me. Simulator is fine. On my phone via TestFlight it crashes before the first screen. No logs I can find.

What I’ve tried

Reinstalled, cleared cache, rebuilt with eas build.

Comment

2 answers

ben_mobile · edited

Answering my own question for the next person: the crash was a missing NSCameraUsageDescription in app.json. iOS kills the app the moment a permission is requested without a description, and the simulator does not.

How to see it: Xcode → Window → Devices → your phone → "Open Console", filter on your app name. The crash reason is in there in plain English.

Comment
jonas_k · edited

Good catch. For others: npx expo-doctor flags most of these before you build.

Comment