mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-21 08:41:57 +00:00
Update README to reflect changes in command usage for Expo; replace npm and yarn commands with npx and yarn dlx for starting the app and building for Android and iOS.
This commit is contained in:
parent
2d0df0c151
commit
8b3ffc9c16
1 changed files with 6 additions and 6 deletions
12
README.md
12
README.md
|
|
@ -68,24 +68,24 @@ Nuvio is an Open-Source cross-platform streaming application built with React Na
|
||||||
|
|
||||||
* **For Expo Go (Development):**
|
* **For Expo Go (Development):**
|
||||||
```bash
|
```bash
|
||||||
npm start
|
npx expo start
|
||||||
# or
|
# or
|
||||||
yarn start
|
yarn dlx expo start
|
||||||
```
|
```
|
||||||
Scan the QR code with the Expo Go app on your iOS or Android device.
|
Scan the QR code with the Expo Go app on your iOS or Android device.
|
||||||
|
|
||||||
* **For Native Android Build/Emulator:**
|
* **For Native Android Build/Emulator:**
|
||||||
```bash
|
```bash
|
||||||
npm run android
|
npx expo run:android
|
||||||
# or
|
# or
|
||||||
yarn android
|
yarn dlx expo run:android
|
||||||
```
|
```
|
||||||
|
|
||||||
* **For Native iOS Build/Simulator:**
|
* **For Native iOS Build/Simulator:**
|
||||||
```bash
|
```bash
|
||||||
npm run ios
|
npx expo run:ios
|
||||||
# or
|
# or
|
||||||
yarn ios
|
yarn dlx expo run:ios
|
||||||
```
|
```
|
||||||
|
|
||||||
## 🤝 Contributing
|
## 🤝 Contributing
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue