mirror of
https://github.com/rust-mobile/android-activity.git
synced 2026-07-10 16:54:10 +00:00
e8ae198653
The winit based examples no longer have an explicit dependency on android-activity and they instead consume the `android-activity` API via the Winit crate so there's no need to keep the versions synchronized.
72 lines
2.4 KiB
TOML
72 lines
2.4 KiB
TOML
[package]
|
|
name = "agdk-eframe"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
winit = { version = "0.27.2", features = [ "android-game-activity" ] }
|
|
wgpu = "0.14.0"
|
|
pollster = "0.2"
|
|
egui = "0.19"
|
|
eframe = { version = "0.19", features = [ "wgpu" ] }
|
|
egui_demo_lib = "0.19"
|
|
|
|
[target.'cfg(not(target_os = "android"))'.dependencies]
|
|
env_logger = "0.9"
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
android_logger = "0.11.0"
|
|
|
|
[patch.crates-io]
|
|
|
|
# This branch of Winit has an updated Android backend based on android-activity
|
|
# Note: The winit branches are current misnamed:
|
|
# - "android-activity" is based on Winit 0.27 (required for Egui compatibility)
|
|
# - "android-activity-0.27" is based on Winit master
|
|
# The -0.27 branch is currently associated with a pull request so we'll just
|
|
# stick with these names for now
|
|
winit = { git = "https://github.com/rib/winit", branch = "android-activity" }
|
|
#winit = { path = "../../../winit" }
|
|
|
|
# Note:
|
|
# Since android-activity is responsible for invoking the `android_main`
|
|
# entrypoint for a native Rust application there can only be a single
|
|
# implementation of the crate linked with the application.
|
|
#
|
|
# By default the Winit-based examples use released versions of android-activity
|
|
# to help keep the version in sync with the Winit backend.
|
|
#
|
|
# If you'd like to build this example against the local checkout of
|
|
# android-activity you should specify a patch here to make sure you also affect
|
|
# the version that Winit uses.
|
|
#
|
|
# Note: also check that the local android-activity/Cargo.toml version matches
|
|
# the android-activity version that Winit depends on (in case you need to check
|
|
# out a release branch locally to be compatible)
|
|
#android-activity = { path = "../../android-activity" }
|
|
|
|
# Egui 0.19 is missing some fixes for Android so we need to build against
|
|
# git master for now
|
|
egui = { git = "https://github.com/emilk/egui" }
|
|
eframe = { git = "https://github.com/emilk/egui" }
|
|
egui_demo_lib = { git = "https://github.com/emilk/egui" }
|
|
#egui = { path = "../../../egui/crates/egui" }
|
|
#eframe = { path = "../../../egui/crates/eframe" }
|
|
#egui_demo_lib = { path = "../../../egui/crates/egui_demo_lib" }
|
|
|
|
[features]
|
|
default = []
|
|
desktop = []
|
|
|
|
[lib]
|
|
name="main"
|
|
crate_type=["cdylib"]
|
|
|
|
[[bin]]
|
|
path="src/lib.rs"
|
|
name="agdk-eframe"
|
|
required-features = [ "desktop" ] |