Files
android-activity/examples/agdk-oboe/Cargo.toml
T
Robert Bragg a73f9202d0 Add minimal Oboe audio library example
Based on the demo in the oboe-rs repo this is a minimal example that
runs with GameActivity and plays a 440Hz sine wave
2022-07-26 01:31:56 +01:00

17 lines
418 B
TOML

[package]
name = "agdk-oboe"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
android_logger = "0.11.0"
android-activity = { path="../../android-activity", features = ["game-activity"] }
oboe = { version = "0.4", features = ["java-interface"] }
atomic_float = "0.1"
[lib]
name="main"
crate_type=["cdylib"]