From b40d3ddc6b8541692aaff7ce6b0efad4c39355ff Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Wed, 7 Jul 2021 16:06:01 +0200 Subject: [PATCH] docs: Update expo getting started docs --- docs/docs/guides/SETUP.mdx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/docs/guides/SETUP.mdx b/docs/docs/guides/SETUP.mdx index 73044e1..4413380 100644 --- a/docs/docs/guides/SETUP.mdx +++ b/docs/docs/guides/SETUP.mdx @@ -63,6 +63,8 @@ Open your project's `AndroidManifest.xml` and add the following lines inside the +### Managed Expo + Add the VisionCamera plugin to your Expo config (`app.json`, `app.config.json` or `app.config.js`): ```json @@ -82,7 +84,17 @@ Add the VisionCamera plugin to your Expo config (`app.json`, `app.config.json` o } ``` -Finally, run `expo prebuild` to compile the mods. The changes will be applied once you build a new binary with `eas build`. +Finally, run the following command to compile the mods: + +```bash +expo prebuild +``` + +To apply the changes, build a new binary with EAS: + +```bash +eas build +```