npm i
npx expo start
npx expo prebuild
for emulator: npx expo run:android
for running on phone: eas build --profile development --platform android
then npx expo start --dev-client
npm install -g @aws-amplify/cli
amplify add <category>
will allow you to add features like user login or a backend API
amplify push
will build all your local backend resources and provision it in the cloud
amplify console
to open the Amplify Console and view your project status
amplify publish
will build all your local backend and frontend resources (if you have hosting category added) and provision it in the cloud
import '@azure/core-asynciterator-polyfill';
is required at entry point of app