Skip to content

Commit 74b00d3

Browse files
committed
docs: fix installation guide with correct CLI tools
- Replace @expo/cli with eas-cli for Expo projects - Add expo-modules-core installation guide for React Native CLI projects - Update "Expo Bare Workflow" to "React Native CLI Projects"
1 parent 9f39b4b commit 74b00d3

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

docs/docs/installation.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ npm install expo-iap
3333

3434
If you're using Expo managed workflow, you'll need to create a [custom development client](https://docs.expo.dev/development/create-development-builds/) since in-app purchases require native modules that aren't available in Expo Go.
3535

36-
1. **Install Expo CLI** (if not already installed):
36+
1. **Install EAS CLI** (if not already installed):
3737

3838
```bash
39-
npm install -g @expo/cli
39+
npm install -g eas-cli
4040
```
4141

4242
2. **Create a development build**:
@@ -45,9 +45,15 @@ If you're using Expo managed workflow, you'll need to create a [custom developme
4545
eas build --platform android --profile development
4646
```
4747

48-
### For Expo Bare Workflow
48+
### For React Native CLI Projects
4949

50-
If you're using Expo bare workflow or vanilla React Native, you'll need to install the native dependencies:
50+
If you're using React Native CLI projects, you'll need to install expo-modules-core first:
51+
52+
```bash
53+
npx install-expo-modules@latest
54+
```
55+
56+
Then install the native dependencies:
5157

5258
#### iOS
5359

0 commit comments

Comments
 (0)