Skip to content

Commit e421464

Browse files
committed
feat: update the expoMessaging app's readme with makefile usage as in the sampleApp
1 parent f2d046d commit e421464

File tree

1 file changed

+32
-4
lines changed

1 file changed

+32
-4
lines changed

examples/ExpoMessaging/Readme.md

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,38 @@
11
# Expo Chat example app
22

3-
Make sure node version is >= v10.13.0
3+
## How to run the app
4+
5+
6+
- Install the expo command line tool and other requirements as specified in the [expo official installation documentation](https://docs.expo.dev/get-started/installation/)
7+
8+
- Clone the project
49

510
```bash
6-
yarn global add expo-cli
711
git clone https://github.com/GetStream/stream-chat-react-native.git
8-
cd stream-chat-react-native/examples/ExpoMessaging
9-
yarn && yarn start
1012
```
13+
14+
- Install dependencies
15+
16+
```bash
17+
cd stream-chat-react-native/package
18+
make
19+
```
20+
- Move to the app directory
21+
22+
```bash
23+
cd ../examples/ExpoMessaging
24+
```
25+
26+
- Run
27+
28+
- For iOS
29+
30+
```bash
31+
yarn ios
32+
```
33+
34+
- For android
35+
36+
```bash
37+
yarn android
38+
```

0 commit comments

Comments
 (0)