mirror of
https://github.com/bevyengine/bevy
synced 2024-11-23 05:03:47 +00:00
30 lines
656 B
TOML
30 lines
656 B
TOML
|
[package]
|
||
|
name = "bevy-android-example"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
description = "Example for building an Android app with Bevy"
|
||
|
publish = false
|
||
|
license = "MIT OR Apache-2.0"
|
||
|
|
||
|
[lib]
|
||
|
name = "bevy_android_example"
|
||
|
crate-type = ["cdylib"]
|
||
|
|
||
|
[dependencies]
|
||
|
bevy = { path = "../../" }
|
||
|
|
||
|
[package.metadata.android]
|
||
|
package = "org.bevyengine.example"
|
||
|
apk_name = "bevyexample"
|
||
|
assets = "../../assets"
|
||
|
resources = "../../assets/android-res"
|
||
|
build_targets = ["aarch64-linux-android", "armv7-linux-androideabi"]
|
||
|
|
||
|
[package.metadata.android.sdk]
|
||
|
target_sdk_version = 31
|
||
|
|
||
|
[package.metadata.android.application]
|
||
|
icon = "@mipmap/ic_launcher"
|
||
|
label = "Bevy Example"
|
||
|
|