This is the big one — the Tauri Android app now has a real audio stack
capable of full-duplex VoIP, reusing the proven C++ Oboe bridge from the
legacy wzp-android crate.
Architecture:
- desktop/src-tauri/cpp/ — copies of oboe_bridge.{h,cpp}, oboe_stub.cpp,
and getauxval_fix.c from crates/wzp-android/cpp/. build.rs clones
google/oboe@1.8.1 into OUT_DIR and compiles the bridge + all Oboe
sources as "oboe_bridge" static lib, linking against shared libc++
(static would pull broken libc stubs that SIGSEGV in .so libraries).
- src/oboe_audio.rs — Rust side: an SPSC ring buffer matching the C++
bridge's AtomicI32 layout, plus OboeHandle::start() which returns
(capture_ring, playout_ring, owning_handle). The ring exposes the same
(available / read / write) methods as wzp_client::audio_ring::AudioRing
so CallEngine treats both backends interchangeably.
- src/engine.rs — compiled on every platform now. A cfg-switched type
alias picks wzp_client::audio_ring::AudioRing on desktop and
crate::oboe_audio::AudioRing on Android. The audio setup block has
three branches: VPIO/CPAL on macOS, CPAL on Linux/Windows, Oboe on
Android. Send/recv tasks are identical across platforms.
- src/lib.rs — removes all the "step 3 not done" Android stubs. The
engine module is no longer cfg-gated; connect / disconnect / toggle_mic
/ toggle_speaker / get_status are single implementations used by both
desktop and Android. Identity path resolves via app.path().app_data_dir()
from the Tauri setup() callback (already wired in step 1).
Runtime mic permission:
- scripts/build-tauri-android.sh now injects RECORD_AUDIO + MODIFY_AUDIO_
SETTINGS into gen/android/app/src/main/AndroidManifest.xml after init,
and overwrites MainActivity.kt with a version that calls
ActivityCompat.requestPermissions in onCreate. This is idempotent:
every build re-applies the patches so tauri re-init can't regress them.
Cargo.toml:
- cc is now an unconditional build-dep (build.rs runs on the host, so
target-gating build-deps doesn't work).
- wzp-client is now a dep on every platform. On Android it gets default
features only (no "audio"/"vpio") so CPAL isn't dragged in — oboe_audio
provides the capture/playout rings instead.
- tracing-android is added on Android so tracing events flow into logcat.
build.rs also gained embedded git hash (WZP_GIT_HASH) capture, which is
shown under the fingerprint on the home screen — already committed in
7639aaf, reinstated here alongside the Oboe build logic.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
273 lines
10 KiB
Bash
Executable File
273 lines
10 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# =============================================================================
|
|
# WZ Phone — Tauri 2.x Mobile Android APK build
|
|
#
|
|
# Builds the desktop/ Tauri app as an Android APK via cargo-tauri inside the
|
|
# wzp-android-builder Docker image on SepehrHomeserverdk. Uploads the APK to
|
|
# rustypaste, fires ntfy.sh/wzp notifications at start + finish, and SCPs the
|
|
# APK back locally.
|
|
#
|
|
# Same pattern as build-and-notify.sh but for the Tauri mobile pipeline:
|
|
# - Source: desktop/src-tauri/ (not android/)
|
|
# - Build: cargo tauri android build (not gradlew assembleDebug)
|
|
# - Output: desktop/src-tauri/gen/android/.../*.apk
|
|
#
|
|
# Usage:
|
|
# ./scripts/build-tauri-android.sh # full pipeline (debug)
|
|
# ./scripts/build-tauri-android.sh --release # release APK
|
|
# ./scripts/build-tauri-android.sh --no-pull # skip git fetch
|
|
# ./scripts/build-tauri-android.sh --rust # force-clean rust target
|
|
# ./scripts/build-tauri-android.sh --init # also run `cargo tauri android init`
|
|
#
|
|
# Environment:
|
|
# WZP_BRANCH Branch to build (default: feat/desktop-audio-rewrite)
|
|
# =============================================================================
|
|
|
|
REMOTE_HOST="SepehrHomeserverdk"
|
|
BASE_DIR="/mnt/storage/manBuilder"
|
|
NTFY_TOPIC="https://ntfy.sh/wzp"
|
|
LOCAL_OUTPUT="target/tauri-android-apk"
|
|
BRANCH="${WZP_BRANCH:-feat/desktop-audio-rewrite}"
|
|
SSH_OPTS="-o ConnectTimeout=15 -o ServerAliveInterval=15 -o ServerAliveCountMax=4 -o LogLevel=ERROR"
|
|
|
|
REBUILD_RUST=0
|
|
DO_PULL=1
|
|
DO_INIT=0
|
|
BUILD_RELEASE=0
|
|
for arg in "$@"; do
|
|
case "$arg" in
|
|
--rust) REBUILD_RUST=1 ;;
|
|
--pull) DO_PULL=1 ;;
|
|
--no-pull) DO_PULL=0 ;;
|
|
--init) DO_INIT=1 ;;
|
|
--release) BUILD_RELEASE=1 ;;
|
|
-h|--help)
|
|
sed -n '3,30p' "$0"
|
|
exit 0
|
|
;;
|
|
esac
|
|
done
|
|
|
|
log() { echo -e "\033[1;36m>>> $*\033[0m"; }
|
|
ssh_cmd() { ssh -A $SSH_OPTS "$REMOTE_HOST" "$@"; }
|
|
|
|
notify_local() { curl -s -d "$1" "$NTFY_TOPIC" > /dev/null 2>&1 || true; }
|
|
|
|
mkdir -p "$LOCAL_OUTPUT"
|
|
|
|
log "Uploading remote build script..."
|
|
ssh_cmd "cat > /tmp/wzp-tauri-build.sh" <<'REMOTE_SCRIPT'
|
|
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
BASE_DIR="/mnt/storage/manBuilder"
|
|
NTFY_TOPIC="https://ntfy.sh/wzp"
|
|
BRANCH="${1:-feat/desktop-audio-rewrite}"
|
|
DO_PULL="${2:-1}"
|
|
REBUILD_RUST="${3:-0}"
|
|
DO_INIT="${4:-0}"
|
|
BUILD_RELEASE="${5:-0}"
|
|
|
|
LOG_FILE=/tmp/wzp-tauri-build.log
|
|
GIT_HASH="unknown" # populated after fetch
|
|
ENV_FILE="$BASE_DIR/.env"
|
|
|
|
notify() { curl -s -d "$1" "$NTFY_TOPIC" > /dev/null 2>&1 || true; }
|
|
|
|
# Upload a file to rustypaste; print URL on stdout (or empty on failure).
|
|
upload_to_rustypaste() {
|
|
local file="$1"
|
|
[ ! -f "$ENV_FILE" ] && { echo ""; return; }
|
|
# shellcheck disable=SC1090
|
|
source "$ENV_FILE"
|
|
if [ -n "${rusty_address:-}" ] && [ -n "${rusty_auth_token:-}" ]; then
|
|
curl -s -F "file=@$file" -H "Authorization: $rusty_auth_token" "$rusty_address" || echo ""
|
|
else
|
|
echo ""
|
|
fi
|
|
}
|
|
|
|
# On failure: upload the build log to rustypaste, then notify with hash + url.
|
|
on_error() {
|
|
local line="$1"
|
|
local log_url
|
|
log_url=$(upload_to_rustypaste "$LOG_FILE" || echo "")
|
|
if [ -n "$log_url" ]; then
|
|
notify "WZP Tauri Android build FAILED [$GIT_HASH] (line $line)
|
|
log: $log_url"
|
|
else
|
|
notify "WZP Tauri Android build FAILED [$GIT_HASH] (line $line) — log upload failed, see $LOG_FILE on remote"
|
|
fi
|
|
}
|
|
trap 'on_error $LINENO' ERR
|
|
|
|
exec > >(tee "$LOG_FILE") 2>&1
|
|
|
|
if [ "$DO_PULL" = "1" ]; then
|
|
echo ">>> git fetch + reset $BRANCH"
|
|
cd "$BASE_DIR/data/source"
|
|
git reset --hard HEAD 2>/dev/null || true
|
|
# NOTE: deliberately do NOT run `git clean -fd` here. It would wipe the
|
|
# tauri-generated `desktop/src-tauri/gen/android/` scaffold (gradlew,
|
|
# settings.gradle, etc.) which is expensive to recreate and breaks
|
|
# subsequent builds with "gradlew not found".
|
|
git gc --prune=now 2>/dev/null || true
|
|
git fetch origin "$BRANCH" 2>&1 | tail -3
|
|
git checkout "$BRANCH" 2>/dev/null || git checkout -b "$BRANCH" "origin/$BRANCH"
|
|
git reset --hard "origin/$BRANCH"
|
|
git submodule update --init || true
|
|
fi
|
|
|
|
GIT_HASH=$(cd "$BASE_DIR/data/source" && git rev-parse --short HEAD 2>/dev/null || echo unknown)
|
|
GIT_MSG=$(cd "$BASE_DIR/data/source" && git log -1 --pretty=%s 2>/dev/null | head -c 60 || echo "?")
|
|
notify "WZP Tauri Android build STARTED [$GIT_HASH] — $GIT_MSG"
|
|
|
|
# Fix perms so uid 1000 can write
|
|
find "$BASE_DIR/data/source" "$BASE_DIR/data/cache" \
|
|
! -user 1000 -o ! -group 1000 2>/dev/null | \
|
|
xargs -r chown 1000:1000 2>/dev/null || true
|
|
|
|
# Optionally clean rust target for android triples
|
|
if [ "$REBUILD_RUST" = "1" ]; then
|
|
echo ">>> Cleaning Rust android target dirs..."
|
|
rm -rf "$BASE_DIR/data/cache/target/aarch64-linux-android" \
|
|
"$BASE_DIR/data/cache/target/armv7-linux-androideabi" \
|
|
"$BASE_DIR/data/cache/target/i686-linux-android" \
|
|
"$BASE_DIR/data/cache/target/x86_64-linux-android"
|
|
fi
|
|
|
|
# Profile flag
|
|
PROFILE_FLAG="--debug"
|
|
[ "$BUILD_RELEASE" = "1" ] && PROFILE_FLAG=""
|
|
|
|
# Persist ~/.android (where the auto-generated debug.keystore lives) so every
|
|
# build is signed with the SAME key. Without this, every fresh container gets
|
|
# a new debug keystore and `adb install -r` fails with INSTALL_FAILED_UPDATE_
|
|
# INCOMPATIBLE because the signature changed.
|
|
mkdir -p "$BASE_DIR/data/cache/android-home"
|
|
chown 1000:1000 "$BASE_DIR/data/cache/android-home" 2>/dev/null || true
|
|
|
|
docker run --rm \
|
|
--user 1000:1000 \
|
|
-e DO_INIT="$DO_INIT" \
|
|
-e PROFILE_FLAG="$PROFILE_FLAG" \
|
|
-v "$BASE_DIR/data/source:/build/source" \
|
|
-v "$BASE_DIR/data/cache/cargo-registry:/home/builder/.cargo/registry" \
|
|
-v "$BASE_DIR/data/cache/cargo-git:/home/builder/.cargo/git" \
|
|
-v "$BASE_DIR/data/cache/target:/build/source/target" \
|
|
-v "$BASE_DIR/data/cache/gradle:/home/builder/.gradle" \
|
|
-v "$BASE_DIR/data/cache/android-home:/home/builder/.android" \
|
|
wzp-android-builder \
|
|
bash -c '
|
|
set -euo pipefail
|
|
cd /build/source/desktop
|
|
|
|
echo ">>> npm install"
|
|
npm install --silent 2>&1 | tail -5 || npm install 2>&1 | tail -20
|
|
|
|
cd src-tauri
|
|
|
|
# Run init if forced, OR if the gradle wrapper is missing. Just checking
|
|
# for `gen/android` is not enough — Tauri creates a few subdirectories
|
|
# during build (app/, buildSrc/, .gradle/) that survive a partial wipe and
|
|
# would make a naive `[ ! -d gen/android ]` check return false even though
|
|
# the build wrapper itself is gone.
|
|
if [ "${DO_INIT}" = "1" ] || [ ! -x gen/android/gradlew ]; then
|
|
echo ">>> cargo tauri android init"
|
|
cargo tauri android init 2>&1 | tail -20
|
|
fi
|
|
|
|
# ── Post-init patches: runtime mic permission + jniLibs dir ─────────────────
|
|
MANIFEST=gen/android/app/src/main/AndroidManifest.xml
|
|
if ! grep -q "RECORD_AUDIO" "$MANIFEST"; then
|
|
echo ">>> injecting RECORD_AUDIO + MODIFY_AUDIO_SETTINGS into AndroidManifest"
|
|
sed -i "s|<uses-permission android:name=\"android.permission.INTERNET\" />|<uses-permission android:name=\"android.permission.INTERNET\" />\n <uses-permission android:name=\"android.permission.RECORD_AUDIO\" />\n <uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\" />|" "$MANIFEST"
|
|
fi
|
|
|
|
# Overwrite MainActivity to request the mic permission on launch. Idempotent —
|
|
# Tauri re-init would reset it, and we re-write it here on every build.
|
|
MAIN_ACTIVITY=gen/android/app/src/main/java/com/wzp/desktop/MainActivity.kt
|
|
cat > "$MAIN_ACTIVITY" <<KOTLIN_EOF
|
|
package com.wzp.desktop
|
|
|
|
import android.Manifest
|
|
import android.content.pm.PackageManager
|
|
import android.os.Bundle
|
|
import androidx.activity.enableEdgeToEdge
|
|
import androidx.core.app.ActivityCompat
|
|
|
|
class MainActivity : TauriActivity() {
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
enableEdgeToEdge()
|
|
super.onCreate(savedInstanceState)
|
|
|
|
// Auto-request RECORD_AUDIO + MODIFY_AUDIO_SETTINGS on first launch — Oboe
|
|
// capture fails silently without them.
|
|
val needed = arrayOf(
|
|
Manifest.permission.RECORD_AUDIO,
|
|
Manifest.permission.MODIFY_AUDIO_SETTINGS,
|
|
).filter {
|
|
ActivityCompat.checkSelfPermission(this, it) != PackageManager.PERMISSION_GRANTED
|
|
}.toTypedArray()
|
|
if (needed.isNotEmpty()) {
|
|
ActivityCompat.requestPermissions(this, needed, 1337)
|
|
}
|
|
}
|
|
}
|
|
KOTLIN_EOF
|
|
|
|
echo ">>> cargo tauri android build ${PROFILE_FLAG} --target aarch64 --apk"
|
|
cargo tauri android build ${PROFILE_FLAG} --target aarch64 --apk
|
|
|
|
echo ""
|
|
echo ">>> Build artifacts:"
|
|
find gen/android -name "*.apk" -exec ls -lh {} \; 2>/dev/null
|
|
'
|
|
|
|
# Locate the produced APK
|
|
APK=$(find "$BASE_DIR/data/source/desktop/src-tauri/gen/android" -name "*.apk" -type f 2>/dev/null | head -1)
|
|
if [ -z "$APK" ] || [ ! -f "$APK" ]; then
|
|
LOG_URL=$(upload_to_rustypaste "$LOG_FILE" || echo "")
|
|
if [ -n "$LOG_URL" ]; then
|
|
notify "WZP Tauri Android build [$GIT_HASH]: no APK produced
|
|
log: $LOG_URL"
|
|
else
|
|
notify "WZP Tauri Android build [$GIT_HASH]: no APK produced — log upload failed"
|
|
fi
|
|
exit 1
|
|
fi
|
|
APK_SIZE=$(du -h "$APK" | cut -f1)
|
|
|
|
RUSTY_URL=$(upload_to_rustypaste "$APK" || echo "")
|
|
if [ -n "$RUSTY_URL" ]; then
|
|
notify "WZP Tauri Android build OK [$GIT_HASH] ($APK_SIZE)
|
|
$RUSTY_URL"
|
|
else
|
|
notify "WZP Tauri Android build OK [$GIT_HASH] ($APK_SIZE) — rustypaste upload skipped"
|
|
fi
|
|
|
|
# Print path so the local script can grab it
|
|
echo "APK_REMOTE_PATH=$APK"
|
|
REMOTE_SCRIPT
|
|
|
|
ssh_cmd "chmod +x /tmp/wzp-tauri-build.sh"
|
|
|
|
notify_local "WZP Tauri Android build dispatched (branch=$BRANCH, release=$BUILD_RELEASE)"
|
|
log "Triggering remote build (branch=$BRANCH)..."
|
|
|
|
# Run; capture full output, last line is APK_REMOTE_PATH=...
|
|
REMOTE_OUTPUT=$(ssh_cmd "/tmp/wzp-tauri-build.sh '$BRANCH' '$DO_PULL' '$REBUILD_RUST' '$DO_INIT' '$BUILD_RELEASE'" || true)
|
|
echo "$REMOTE_OUTPUT" | tail -60
|
|
|
|
APK_REMOTE=$(echo "$REMOTE_OUTPUT" | grep '^APK_REMOTE_PATH=' | tail -1 | cut -d= -f2-)
|
|
if [ -n "$APK_REMOTE" ]; then
|
|
log "Downloading APK to $LOCAL_OUTPUT/wzp-tauri.apk..."
|
|
scp $SSH_OPTS "$REMOTE_HOST:$APK_REMOTE" "$LOCAL_OUTPUT/wzp-tauri.apk"
|
|
echo " $LOCAL_OUTPUT/wzp-tauri.apk ($(du -h "$LOCAL_OUTPUT/wzp-tauri.apk" | cut -f1))"
|
|
else
|
|
log "No APK produced — see ntfy / remote log /tmp/wzp-tauri-build.log"
|
|
exit 1
|
|
fi
|