Back to Expo

IosPhysicalDevelopmentBuild

docs/scenes/get-started/set-up-your-environment/instructions/iosPhysicalDevelopmentBuild.mdx

latest2.7 KB
Original Source

import { Terminal } from '/ui/components/Snippet'; import { Step } from '/ui/components/Step';

import { BuildEnvironmentSwitch } from '../BuildEnvironmentSwitch';

Set up an iOS device with a development build

<BuildEnvironmentSwitch /> <Step label="1"> ### Enroll in the Apple Developer Program

To install a development build on your iOS device, you will need an active subscription to the Apple Developer Program. Sign up for the Apple Developer Program here.

</Step> <Step label="2"> ### Install EAS CLI

To build your app, you will need to install EAS CLI. You can do this by running the following command in your terminal:

<Terminal cmd={['$ npm install -g eas-cli']} />

</Step> <Step label="3">

Create an Expo account and login

Next, you will need to create an Expo account and login to the EAS CLI.

  1. Sign up for an Expo account.
  2. Run the following command in your terminal to log in to the EAS CLI: <Terminal cmd={['$ eas login']} />
</Step> <Step label="4"> ### Configure your project

Run the following command to create an EAS config in your project:

<Terminal cmd={['$ eas build:configure']} />

</Step> <Step label="5"> ### Create an ad hoc provisioning profile

To install a development build on your iOS device, you will need to create an ad hoc provisioning profile. Create one by running the following command in your terminal:

<Terminal cmd={['$ eas device:create']} />

</Step> <Step label="6"> ### Create a development build

Run the following command to create a development build:

<Terminal cmd={['$ eas build --platform ios --profile development']} />

</Step> <Step label="7"> ### Install the development build on your device

After the build is complete, scan the QR code in your terminal and tap Open with iTunes when it appears inside the Camera app. Alternatively, open the link displayed in the terminal on your device.

After confirming the installation, the app will appear in your device's app library.

</Step> <Step label="8"> ### Turn on developer mode
  1. Open Settings > Privacy & Security, scroll down to the Developer Mode list item and navigate into it.
  2. Tap the switch to enable Developer Mode. After you do so, Settings presents an alert to warn you that Developer Mode reduces your device's security. To continue enabling Developer Mode, tap the alert's Restart button.
  3. After the device restarts and you unlock it, the device shows an alert confirming that you want to enable Developer Mode. Tap Turn On, and enter your device passcode when prompted.

Alternatively, if you have Xcode installed on your Mac, you can use it to enable iOS developer mode.

</Step>