From a8e8017918a6d0eada361fd537bdeafca2b9728c Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Mon, 4 Jul 2022 20:54:20 +0100 Subject: [PATCH] Bump ndk/ndk-sys deps for consistency with winit master --- android-activity/Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/android-activity/Cargo.toml b/android-activity/Cargo.toml index 17b1dcf..d49e968 100644 --- a/android-activity/Cargo.toml +++ b/android-activity/Cargo.toml @@ -24,8 +24,10 @@ native-activity = [] [dependencies] log = "0.4" jni-sys = "0.3" -ndk = { version = "0.6" } -ndk-sys = { version = "0.3" } +# Coordinate the next winit release with android-ndk-rs: https://github.com/rust-windowing/winit/issues/1995 +ndk = { git = "https://github.com/rust-windowing/android-ndk-rs", rev = "7e33384" } +ndk-sys = { git = "https://github.com/rust-windowing/android-ndk-rs", rev = "7e33384" } +#ndk-sys = { version = "0.3" } ndk-context = { version = "0.1" } android-properties = "0.2" num_enum = "0.5"