From 62564e43f929dd9d1698b08d811caad94299a8a3 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Sat, 4 Jan 2025 13:07:52 -0800 Subject: [PATCH] Container env Signed-off-by: James Ketrenos --- README.md | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 72ec27d..9e0fcbd 100644 --- a/README.md +++ b/README.md @@ -116,22 +116,52 @@ avdmanager create avd \ -k "system-images;android-35-ext14;google_apis_playstore;x86_64" ``` +# Emulator + ## Run the emulator Launch the development container + ```bash ./launch.sh eikona ``` -Launch the emulator +## Launch the emulator ```bash ./shell.sh eikona ./emulator.sh Pixel ``` -Install the app +## Install the app ```bash +./shell.sh eikona ./install.sh debug # or release -- default debug -``` \ No newline at end of file +``` + +# Add a new component + +## Shell in and add component + +```bash +./shell.sh eikona +npx expo install react-pdf-viewer +``` + +### To remove + +```bash +./shell.sh eikona +npm remove react-pdf-viewer +``` + +## Build the app + +While in the shell previously launched, run the 'build' script: + +```bash +./shell.sh eikona +./build.sh debug # release +``` +