This is a starter template for the App.
-
We use React Native and Expo to develop our App.
- You need to install NodeJs to run the React Native application. For more information: https://reactnative.dev/docs/set-up-your-environment
- Setup the enviroment: https://docs.expo.dev/get-started/set-up-your-environment/
-
Install dependencies
npm install
-
Start the local development server
npx expo start
-
To build the development server
To initialize our project for a development build, let's cd inside our project directory and run the following command to install the library:
npx expo install expo-dev-client
Run the npx expo start to start the development server:
npx expo start
-
Initialize a development build
We need to install the EAS Command Line Interface (CLI) tool as a global dependency on our local machine. Run the following command:
npm install -g eas-cli
eas login
For any new project, the first step is to initialize and link it to the EAS servers. Run the following command:
eas init
-
Configure project for EAS Build
eas build:configure
-