The PGP-UK GenoME app.
yarn installNext, login into the EAS Account.
eas loginbrew 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.gzfile containing a.appfile. 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-clientThis 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 previewTODO