1
0

Compare commits

...

1 Commits

Author SHA1 Message Date
James Ketrenos
62564e43f9 Container env
Signed-off-by: James Ketrenos <james.p.ketrenos@intel.com>
2025-01-04 13:07:52 -08:00

View File

@ -116,22 +116,52 @@ avdmanager create avd \
-k "system-images;android-35-ext14;google_apis_playstore;x86_64" -k "system-images;android-35-ext14;google_apis_playstore;x86_64"
``` ```
# Emulator
## Run the emulator ## Run the emulator
Launch the development container Launch the development container
```bash ```bash
./launch.sh eikona ./launch.sh eikona
``` ```
Launch the emulator ## Launch the emulator
```bash ```bash
./shell.sh eikona ./shell.sh eikona
./emulator.sh Pixel ./emulator.sh Pixel
``` ```
Install the app ## Install the app
```bash ```bash
./shell.sh eikona
./install.sh debug # or release -- default debug ./install.sh debug # or release -- default debug
``` ```
# 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
```