zig build -Dtarget=x86_64-linux-android
adb install ./zig-out/bin/sdl-android-test.apk
adb shell am start -S -W -n com.zig.sdl3/com.zig.sdl3.ZigSDLActivityzig build -Dandroid=true
adb install ./zig-out/bin/sdl-zig-demo.apkIf installing your application fails with something like:
adb: failed to install ./zig-out/bin/sdl3.apk: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Existing package com.zig.sdl3 signatures do not match newer version; ignoring!]
adb uninstall "com.zig.sdl3"Powershell (app doesn't need to be running)
adb logcat | Select-String com.zig.sdl3:Bash (app doesn't need running to be running)
adb logcat | grep com.zig.sdl3:Bash (app must be running, logs everything by the process including modules)
adb logcat --pid=`adb shell pidof -s com.zig.sdl3`