docs/scenes/get-started/set-up-your-environment/instructions/androidSimulatedDevelopmentBuild.mdx
import { Terminal } from '/ui/components/Snippet';
import { Step } from '/ui/components/Step';
import AndroidEmulatorInstructions from './_androidEmulatorInstructions.mdx'; import AndroidStudioInstructions from './_androidStudioInstructions.mdx'; import { BuildEnvironmentSwitch } from '../BuildEnvironmentSwitch';
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="2">To build your app, you will need to create an Expo account and login to the EAS CLI.
Run the following command to create an EAS config in your project:
<Terminal cmd={['$ eas build:configure']} />
</Step> <Step label="4"> ### Create a buildRun the following command to create a development build:
<Terminal cmd={['$ eas build --platform android --profile development']} /> </Step>
<Step label="5"> ### Install the development build on your emulatorAfter the build is complete, the CLI will prompt you to automatically download and install it on the Android Emulator. When prompted, press <kbd>Y</kbd> to directly install it on the emulator.
If you miss this prompt, you can download the build from the link provided in the terminal and drag and drop it onto the Android Emulator to install it.
</Step>