Add justfile

This commit is contained in:
Greg Shuflin 2024-10-02 20:09:35 -07:00
parent 5242a77611
commit 922feb5f73

13
justfile Normal file
View File

@ -0,0 +1,13 @@
_default:
just --list
android-dev:
@just run-android cargo tauri android dev
# Run any command with the android arguments
run-android *args:
#!/usr/bin/env bash
export JAVA_HOME=/opt/android-studio/jbr
export ANDROID_HOME="$HOME/Android/Sdk"
export NDK_HOME="$ANDROID_HOME/ndk/28.0.12433566"
{{args}}