mirror of
https://github.com/rust-mobile/android-activity.git
synced 2026-07-10 00:37:28 +00:00
2a9ed44d93
I was mistaken recently, thinking that cpal's dev-dependency on ndk-glue was somehow being inherited by the example. Actually the real issue was that cpal 0.13.5 has a regular _dependency_ on ndk-glue, which is a much simpler explanation for why we were seeing a crash. This updates the example to just use the master branch of cpal, which we'll need until there is a new release of cpal.
This is a minimal test application based on GameActivity that just
runs a mainloop based on android_activity::poll_events() and plays a
sine wave audio test using the Cpal audio library.
export ANDROID_NDK_HOME="path/to/ndk"
export ANDROID_HOME="path/to/sdk"
rustup target add aarch64-linux-android
cargo install cargo-ndk
cargo ndk -t arm64-v8a -o app/src/main/jniLibs/ build
./gradlew build
./gradlew installDebug
adb shell am start -n co.realfit.agdkcpal/.MainActivity