EAS Build error (iOS only)

This is what helped me:

  1. Remove app.json > expo > entrypoint field (it’s deprecated)
  2. Set package.json > main path to node_modules/expo/AppEntry.js
  3. Move your entry point code to ./App file:
// ./App.tsx

import { registerRootComponent } from 'expo';
import App from './src/App';

registerRootComponent(App);

export default App;

Best working example: expo/templates/expo-template-blank-typescript at master · expo/expo · GitHub

1 Like