The PGP-UK GenoME app.
yarn install
Next, login into the EAS Account.
eas login
brew install cocoapods fastlane ngrok
# Install RTX runtime manager - https://github.com/jdxcode/rtx#installation
curl https://rtx.jdxcode.com/install.sh | sh
rtx install
npm install -g eas-cli
- First, create the development client locally
eas build --platform ios --profile simulator --local
-
This will generate a
.tar.gz
file containing a.app
file. Drag and drop this into the Simulator -
Start the development server
APP_VARIANT=simulator yarn run start --ios --dev-client
- If using an IOS Device, for the first time, you will need to add this to the development profile
eas device:create
- Next, Generate a development client using the online EAS service.
eas build --platform ios --profile development
eas build --platform android --profile development
-
Install the build development client on the physical device.
-
Start the development client
APP_VARIANT=development yarn run start --tunnel --dev-client
This allows you to install a specific version of the app - i.e. it is similar to the final app.
eas build --platform ios --profile preview
eas build --platform android --profile preview
TODO