Lines Matching refs:build

2 title: Create a development build
4 sidebar_title: Create a build
15 Development builds can be created with [EAS Build](/build/introduction/) or [locally](/guides/local…
19 In this guide, you'll find information on how to create a development build and then install it on …
27 …ing the `eas build` command. It also creates an [**eas.json**](/build/eas-json/) file at the root …
31 "build": {
46build-reference/eas-json/#developmentclient) to `true` to create a Debug build. This allows the `e…
47 - [`distribution`](/build-reference/eas-json/#distribution) to `internal` makes the build ready for…
49 > iOS builds where `developmentClient` is set to `true` on the build profile should always be distr…
55 ## Create a build for emulator/simulator
57 Follow the steps below to create and install the development build on an Android Emulator or an iOS…
67 To create and install the development build on an Android Emulator, you will need an **.apk**. To c…
69 <Terminal cmd={['$ eas build --profile development --platform android']} />
71 After the build is complete, the CLI will prompt you to automatically download and install it on th…
73 See [Build APKs for Android Emulators and devices](/build-reference/apk/#installing-your-build) for…
79 …and install a development build on an iOS Simulator, we recommend you create a separate [build pro…
81 For example, the `development-simulator` profile below is only for creating a development build for…
85 "build": {
97 Then, run the following command to create the development build on an iOS Simulator:
99 <Terminal cmd={['$ eas build --profile development-simulator --platform ios']} />
101 After the build is complete, the CLI will prompt you to automatically download and install it on th…
103 See [Installing build on the simulator](/build-reference/simulators/#installing-build-on-the-simula…
113 ## Create a build for the device
115 Follow the steps below to create and install the development build on an Android or an iOS device. …
121 > If you have created a development build for Android Emulator, you do not need to create it separa…
123 To create and install the development build on an Android device, you will need a **.apk**. To crea…
125 <Terminal cmd={['$ eas build --profile development --platform android']} />
127 After the build is complete, copy the URL to the **.apk** from the build details page or the link p…
133 > **warning** Apple Developer membership is required to create and install a development build on a…
135 To register any iOS device you'd like to develop onto your [ad hoc provisioning profile](/build/int…
139 After registering your iOS device, you can create the development build by running the command:
141 <Terminal cmd={['$ eas build --profile development --platform ios']} />
143 … don't have this setting enabled or are installing your first development build on your device, se…
145build is complete, you can download it on your iOS device by scanning the QR code from the device'…
147 You can also find this QR code on the build page in the [Expo dashboard](https://expo.dev/accounts/…
159 …description="Learn about how you can install and share a development build with your team or run i…