How to Create an expo Project
- login and create a project in expo.dev
- go the the parent project folder that you want to create the project on
- for me, i am in the folder
~/SurfWatch/and i want to create a project in~/SurfWatch/client/. so while in~/SurfWatch/i will run the commandnpx create-expo-app client.
- for me, i am in the folder
cd client-
run
npx expo install expo-dev-clientto install the expo dev client\- while in
P:\Coding\ECE 140B\SurfWatch\client>
5. finally, runPS P:\Coding\ECE 140B\SurfWatch\client> eas build:configure (node:37776) [DEP0040] DeprecationWarning: The`punycode`module is deprecated. Please use a userland alternative instead. (Use`node --trace-deprecation ...` to show where the warning was created) EAS project not configured. โ Would you like to automatically create an EAS project for @kiminus/client? ... yes โ Created @kiminus/client: https://expo.dev/accounts/kiminus/projects/client on EAS โ Linked local project to EAS project 0d7641ae-018b-48ab-9a03-a0cc57544e86 ๐ก The following process will configure your iOS and/or Android project to be compatible with EAS Build. These changes only apply to your local project files and you can safely revert them at any time. or Android project to be compatible with EAS Build. These changes only apply to your local project files and you can safely revert them at any time. โ Which platforms would you like to configure for EAS Build? ยป All โ Generated eas.json. Learn more: https://docs.expo.dev/build-reference/eas-json/ ๐ Your project is ready to build. - Run eas build when you are ready to create your first build. - Once the build is completed, run eas submit to upload the app to app stores. - Learn more about other capabilities of EAS Build: https://docs.expo.dev/build/introductioneas build --profile development --platform all6. runeas build --profile preview --platform allto build the preview version of the app. oreas build --profile preview --platform androidto build the preview version of the app for android only. oreas build --profile preview --platform iosto build the preview version of the app for ios only. - while in