> For the complete documentation index, see [llms.txt](https://mobidonia.gitbook.io/mobile-apps/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mobidonia.gitbook.io/mobile-apps/make-app/deploy-app.md).

# Deploy app

Once you are ready on how you app works you are ready to publish it. This process is really simple with Expo. You need to create a free account.&#x20;

### Check if project is healthy

Execute&#x20;

<pre><code><strong>npx expo doctor
</strong></code></pre>

If there are problems

<pre><code><strong>npx expo doctor --fix-dependencies
</strong></code></pre>

### Create build

Full docs [here](https://docs.expo.dev/build/setup/).&#x20;

Execute

```
eas build --platform all
```

### Submit to Google play

Full docs [here](https://docs.expo.dev/submit/android/)

Execute

```
eas submit -p android
```

### Submit to Apple App Store

Full docs [here](https://docs.expo.dev/submit/ios/)

Execute

```
eas submit -p ios
```
