mirror of
https://github.com/seemueller-io/yachtpit.git
synced 2025-09-08 22:46:45 +00:00
35 lines
759 B
TOML
35 lines
759 B
TOML
[package]
|
|
name = "mobile"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "mobile"
|
|
crate-type = ["staticlib", "cdylib"]
|
|
|
|
[dependencies]
|
|
yachtpit = { path = ".." }
|
|
bevy = { version = "0.16.0", default-features = false, features = ["android-native-activity"] }
|
|
|
|
[target."cfg(target_os = \"ios\")".dependencies]
|
|
objc2-avf-audio = { version = "0.3.0", features = [
|
|
"AVAudioSession",
|
|
"AVAudioSessionTypes",
|
|
] }
|
|
|
|
[package.metadata.android]
|
|
package = "io.gs.yachtpit"
|
|
apk_name = "yachtpit"
|
|
assets = "../assets"
|
|
strip = "strip"
|
|
resources = "../build/android/res"
|
|
build_targets = ["aarch64-linux-android"]
|
|
|
|
[package.metadata.android.sdk]
|
|
target_sdk_version = 35
|
|
|
|
[package.metadata.android.application]
|
|
icon = "@mipmap/icon"
|
|
label = "yachtpit"
|