1---
2title: Use a development build
3description: Learn how to use development builds for a project.
4sidebar_title: Use a build
5---
6
7import { Terminal } from '~/ui/components/Snippet';
8import ImageSpotlight from '~/components/plugins/ImageSpotlight';
9import { Tab, Tabs } from '~/ui/components/Tabs';
10import { BoxLink } from '~/ui/components/BoxLink';
11
12Usually, creating a new native build from scratch takes long enough that you'll be tempted to switch tasks and lose your focus. However, with the development build installed on your device or an emulator/simulator, you won't have to wait for the native build process until you [change the underlying native code](#rebuild-a-development-build) that powers your app.
13
14## Add error handling
15
16Certain types of errors can provide more helpful error messages than the ones that ship by default with React Native. To turn this feature on, you need to import `expo-dev-client` at the top of the **App.{js|tsx}** file.
17
18```js App.js
19import 'expo-dev-client';
20```
21
22> This will only affect the application in which you make this change. If you want to load multiple projects from a single development app, you'll need to add this import statement to each project.
23
24## Start the development server
25
26To start developing, run the following command to start the development server:
27
28<Terminal cmd={['$ npx expo start']} />
29
30> **Note:** For SDK 48 and lower, use `npx expo start --dev-client`.
31
32To open the project inside your development client:
33
34- Press <kbd>a</kbd> or <kbd>i</kbd> keys to open your project on an Android Emulator or an iOS Simulator.
35- On a physical device, scan the QR code from your system's camera or a QR code reader to open the project on your device.
36
37## The launcher screen
38
39If you launch the development build from your device's Home screen, you will see your launcher screen, which looks similar to the following:
40
41<ImageSpotlight
42  alt="The launcher screen of a development build"
43  src="/static/images/dev-client/launcher-screen.png"
44  style={{ maxWidth: 600 }}
45/>
46
47If a bundler is detected on your local network, or if you've signed in to an Expo account in both Expo CLI and your development build, you can connect to it directly from this screen. Otherwise, you can connect by scanning the QR code displayed by the Expo CLI.
48
49## Rebuild a development build
50
51If you add a library to your project that contains native code APIs, for example, [`expo-secure-store`](/versions/latest/sdk/securestore/), you will have to rebuild the development client. This is because the native code of the library is not included in the development client automatically when installing the library as a dependency on your project.
52
53## Debug a development build
54
55When you need to, you can access the menu by pressing <kbd>Cmd ⌘</kbd> + <kbd>d</kbd> or <kbd>Ctrl</kbd> + <kbd>d</kbd> in Expo CLI or by shaking your phone or tablet. Here you'll be able to access all of the functions of your development build, any debugging functionality you need, or switch to a different version of your app.
56
57See [Debugging](/debugging/runtime-issues/) guide for more information.
58
59## Next step
60
61<BoxLink
62  title="Share a development build with your team"
63  description="Learn how to install and share the development with your team or run it on multiple devices."
64  href="/develop/development-builds/share-with-your-team"
65/>
66