Docker-based build pipeline (scripts/build-android-docker.sh) replacing
hcloud VMs — NOT verified working yet. Also includes android_logger
migration that may have introduced build issues. All changes after
264ef9c are suspect.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
877 B
TOML
35 lines
877 B
TOML
[package]
|
|
name = "wzp-android"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
description = "WarzonePhone Android native VoIP engine — Oboe audio, JNI bridge, call pipeline"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
wzp-proto = { workspace = true }
|
|
wzp-codec = { workspace = true }
|
|
wzp-fec = { workspace = true }
|
|
wzp-crypto = { workspace = true }
|
|
wzp-transport = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
bytes = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = "1"
|
|
thiserror = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
anyhow = "1"
|
|
libc = "0.2"
|
|
jni = { version = "0.21", default-features = false }
|
|
rand = { workspace = true }
|
|
rustls = { version = "0.23", default-features = false, features = ["ring"] }
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
cc = "1"
|