Skip to content

Commit 2665299

Browse files
Use bevy with default features in iOS example (#7042)
# 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.
1 parent 09c64ff commit 2665299

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

examples/ios/Cargo.toml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,4 @@ name = "bevy_ios_example"
1111
crate-type = ["staticlib"]
1212

1313
[dependencies]
14-
bevy = { path = "../../", features = [
15-
"bevy_audio",
16-
"bevy_winit",
17-
"bevy_core_pipeline",
18-
"bevy_pbr",
19-
"bevy_render",
20-
"bevy_text",
21-
"bevy_ui",
22-
"vorbis",
23-
"filesystem_watcher"
24-
], default-features = false}
14+
bevy = { path = "../../" }

0 commit comments

Comments
 (0)