mirror of
https://github.com/aljazceru/notedeck.git
synced 2026-01-06 09:54:20 +01:00
Fixes: https://github.com/damus-io/notedeck/issues/189 Fixes: https://github.com/damus-io/notedeck/issues/190 Signed-off-by: William Casarin <jb55@jb55.com>
14 lines
348 B
Makefile
14 lines
348 B
Makefile
.DEFAULT_GOAL := apk
|
|
.PHONY: jni apk run-on-device
|
|
|
|
jni:
|
|
cd rust && cargo ndk --target arm64-v8a -o ../java/app/src/main/jniLibs/ build --profile release
|
|
|
|
apk: jni
|
|
cd java && ./gradlew build
|
|
|
|
run-on-device: jni
|
|
cd java && ./gradlew installDebug
|
|
adb shell am start -n local.walkers/.MainActivity
|
|
adb logcat -v color -s walkers RustStdoutStderr
|