From 0dff46623b7102b25bc0baf591fb4d8c079227ee Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Mon, 20 Mar 2023 21:55:48 +0000 Subject: [PATCH] Remove explicit dependency on android-activity/native-activity This allows applications to use the game-activity backend and avoids pinning Egui applications to a specific version of android-activity (which isn't necessary since Egui doesn't directly use the android-activity API) Fixes: #2829 --- crates/egui-winit/Cargo.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/egui-winit/Cargo.toml b/crates/egui-winit/Cargo.toml index 90562389576..f3dc21c4676 100644 --- a/crates/egui-winit/Cargo.toml +++ b/crates/egui-winit/Cargo.toml @@ -70,7 +70,3 @@ smithay-clipboard = { version = "0.6.3", optional = true } [target.'cfg(not(target_os = "android"))'.dependencies] arboard = { version = "3.2", optional = true, default-features = false } - -[target.'cfg(target_os = "android")'.dependencies] -# TODO(emilk): this is probably not the right place for specifying native-activity, but we need to do it somewhere for the CI -android-activity = { version = "0.4", features = ["native-activity"] }