Skip to content

Commit

Permalink
chore: readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
kasvith committed Sep 12, 2024
1 parent 8659eaa commit 06df807
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,24 @@ This is an [Expo](https://expo.dev) project created with [`create-expo-app`](htt
pnpm install
```

2. Start the app
2. Run prebuild to generate native code. This is necessary for compiling the app with native dependencies.

```bash
pnpm start
pnpm prebuild
```

3. Start the app

```bash
pnpm ios
```

or

```bash
pnpm android
```

In the output, you'll find options to open the app in a
- [development build](https://docs.expo.dev/develop/development-builds/introduction/)
Expand Down
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.wavezync.rnstarter"
"bundleIdentifier": "com.wavezync.myapp"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.wavezync.rnstarter"
"package": "com.wavezync.myapp"
},
"web": {
"bundler": "metro",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"test": "jest --watchAll",
"lint": "expo lint",
"lint:fix": "eslint --fix .",
"expo": "expo"
"expo": "expo",
"prebuild:clean": "expo prebuild --clean"
},
"jest": {
"preset": "jest-expo"
Expand Down

0 comments on commit 06df807

Please sign in to comment.