From 8ae1059aec1aed06eb7681afa580db3f46340631 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Tue, 20 Sep 2022 00:32:09 +0100 Subject: [PATCH] na-openxr-wgpu: don't depend on specific version of android-activity --- examples/na-openxr-wgpu/Cargo.toml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/examples/na-openxr-wgpu/Cargo.toml b/examples/na-openxr-wgpu/Cargo.toml index f09850d..570b584 100644 --- a/examples/na-openxr-wgpu/Cargo.toml +++ b/examples/na-openxr-wgpu/Cargo.toml @@ -21,17 +21,13 @@ ctrlc = "3" [target.'cfg(target_os = "android")'.dependencies] android_logger = "0.11.0" -android-activity = { version = "0.3", features = [ "native-activity" ] } +android-activity = { path="../../android-activity", features = [ "native-activity" ] } openxr = { version = "0.16", features = [ "linked" ] } [patch.crates-io] # openxr 0.16 uses ndk-glue, but master uses ndk-context which is compatible with android-activity openxr = { git = "https://github.com/Ralith/openxrs" } -# Since Winit also depends on android-activity we need to -# make sure we only resolve a single implementation. -android-activity = { path="../../android-activity" } - [features] default = [] #default = [ "android" ]