Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 606 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 606 Bytes

Talk To Listen Front End

Installation

  1. Install dependencies
npm install
  1. Run the application ( switch to expo go mode )
npx expo start --tunnel

Submission to Expo

Build

npx eas build --platform all --profile production
  • Submit the build to expo for iOS
npx eas submit --platform ios
  • Submit the build to expo for Android
npx eas submit --platform android

Update

git checkout production && git merge main && npx eas update --branch production --message "Update to latest version" && git checkout main