34 lines
871 B
TOML
34 lines
871 B
TOML
[package]
|
|
name = "mobile"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "mobile"
|
|
crate-type = ["staticlib", "cdylib"]
|
|
|
|
[dependencies]
|
|
ttt-ce = { path = ".." } # ToDo
|
|
bevy = { version = "0.13", 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"]
|
|
|
|
[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
|