aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/justfile b/justfile
index b85492a..7e56d9c 100644
--- a/justfile
+++ b/justfile
@@ -1,9 +1,11 @@
android-setup:
- #!/usr/bin/env sh
sdkmanager "$MY_ANDROID_AVD_PKG" && \
avdmanager create avd -n channels -k "$MY_ANDROID_AVD_PKG" --device 26 --force;
emu:
emulator -gpu swiftshader_indirect @channels
- # emulator -gpu mode @channels
+
+build:
+ bun run react-native build-android --mode release
+