mirror of
https://github.com/bevyengine/bevy.git
synced 2026-07-01 08:12:51 -04:00
f6ff3c334e
android handle only one activity, either game or native. To use native, the default could now be used, but all other android need to add the game activity. # Objective android native activities should be able to use the default ## Solution remove android-game-activity from default ## Testing created a default app for android native activity with default ## Important Will be a breaking change for apps using android-game-activity. --------- Co-authored-by: Christian Oelschlegel <oelschle@sciphy.de> Co-authored-by: leomeinel <leo@meinel.dev>
19 lines
438 B
TOML
19 lines
438 B
TOML
[package]
|
|
name = "bevy_mobile_example"
|
|
# Version is required by `cargo-apk`, though this value will never change.
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
description = "Example for building an iOS or Android app with Bevy"
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
name = "bevy_mobile_example"
|
|
crate-type = ["lib", "cdylib"]
|
|
|
|
[dependencies]
|
|
bevy = { path = "../../", features = ["android-game-activity"] }
|
|
|
|
[lints]
|
|
workspace = true
|