mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
2665299d1c
# Objective I am new to Bevy. And during my development, I noticed that the `iOS` example doesn't work. Example panics with next message: ```panicked at 'Resource requested by bevy_ui::widget::text::text_system does not exist: bevy_asset::assets::Assets```. I have asked for help in a `discord` iOS chat and there I receive a recommendation that it is possible that some bevy features missing. ## Solution So, I used ```bevy``` with default features.
14 lines
278 B
TOML
14 lines
278 B
TOML
[package]
|
|
name = "bevy-ios-example"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Example for building an iOS app with Bevy"
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
name = "bevy_ios_example"
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
bevy = { path = "../../" }
|