Skip to content

Commit

Permalink
docs: expo (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
vonovak authored Jul 17, 2024
1 parent 1eee41c commit 2aac85b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/setting-up/expo.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ With Expo SDK 50, minimum iOS version was bumped to 13.4. In case you get an err

This package cannot be used in ["Expo Go"](https://docs.expo.dev/workflow/overview/#expo-go-an-optional-tool-for-learning) because it requires custom native code.

However, you can add custom native code to Expo by using a [development build](https://docs.expo.dev/workflow/overview/#development-builds). That is the approach recommended by Expo for production apps, and is documented in this guide.
However, you can add custom native code to Expo by using a [development build](https://docs.expo.dev/workflow/overview/#development-builds). Using development builds is the recommended approach for production apps, and is documented in this guide.

:::

Expand All @@ -26,7 +26,7 @@ npx expo install @react-native-google-signin/google-signin

## Add config plugin

After installing the npm package, add the [config plugin](https://docs.expo.io/guides/config-plugins/) (read more details below) to the [`plugins`](https://docs.expo.io/versions/latest/config/app/#plugins) array of your `app.json` or `app.config.js`.
After installing the npm package, add a config plugin (read more details below) to the [`plugins`](https://docs.expo.io/versions/latest/config/app/#plugins) array of your `app.json` or `app.config.js`. There are 2 config plugins available: for projects with Firebase, and without Firebase.

### Expo without Firebase

Expand All @@ -51,7 +51,7 @@ To obtain `iosUrlScheme`, go to the [Google Cloud Console](https://console.cloud

### Expo and Firebase

With Firebase, [obtain the config file](./get-config-file) and place it into your project. Then specify the path to the file:
If you are using Firebase, [obtain the config file](./get-config-file) and place it into your project. Then specify the path to the file:

```json title="app.json"
{
Expand Down

0 comments on commit 2aac85b

Please sign in to comment.