From 8b3ffc9c1619836b3c2c909f0c061d187d602c3a Mon Sep 17 00:00:00 2001 From: Nayif Noushad Date: Tue, 22 Apr 2025 15:54:18 +0530 Subject: [PATCH] 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. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 370cdf3..8aaf987 100644 --- a/README.md +++ b/README.md @@ -68,24 +68,24 @@ Nuvio is an Open-Source cross-platform streaming application built with React Na * **For Expo Go (Development):** ```bash - npm start + npx expo start # or - yarn start + yarn dlx expo start ``` Scan the QR code with the Expo Go app on your iOS or Android device. * **For Native Android Build/Emulator:** ```bash - npm run android + npx expo run:android # or - yarn android + yarn dlx expo run:android ``` * **For Native iOS Build/Simulator:** ```bash - npm run ios + npx expo run:ios # or - yarn ios + yarn dlx expo run:ios ``` ## 🤝 Contributing