-
Notifications
You must be signed in to change notification settings - Fork 89
/
Cargo.toml
40 lines (33 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "mobile"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "mobile"
crate-type = ["staticlib", "cdylib"]
[dependencies]
bevy_game = { path = ".." } # ToDo
bevy = { version = "0.15", default-features = false }
# As long as Kira doesn't expose a feature for this, we need to enable it
# See https://github.com/tesselode/kira/pull/51
[target."cfg(target_os = \"android\")".dependencies.cpal]
version = "0.15"
features = ["oboe-shared-stdcxx"]
# See https://github.com/bevyengine/bevy/pull/12052
[target.aarch64-apple-ios-sim.dependencies]
bevy = { version = "0.14", default-features = false, features = [
"ios_simulator",
] }
[package.metadata.android]
package = "me.nikl.bevygame" # ToDo
apk_name = "BevyGame" # ToDo same as GAME_OSX_APP_NAME in release workflow
assets = "../assets"
strip = "strip"
resources = "../build/android/res"
build_targets = ["aarch64-linux-android"]
[package.metadata.android.sdk]
target_sdk_version = 33
[package.metadata.android.application]
icon = "@mipmap/icon"
label = "Bevy Game" # ToDo