-
Notifications
You must be signed in to change notification settings - Fork 946
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tvOS support #5578
Comments
It is indeed tier 3, but doesn't only support no_std. It seems this PR added libstd support. Either way, I was able to compile and install a Bevy example. It would crash at some iOS-specific functionality like trying to hide the status bar. |
Hi @darkwater. I want to use
Have you seen something like that? Also I think that you should create a PR with your progress to the main |
I'd recommend:
At least until we get |
Is your feature request related to a problem? Please describe.
I was trying to get Bevy to build for tvOS, and wgpu was the main source of errors.
Describe the solution you'd like
Add support for tvOS. Because it's so similar to iOS, this is mostly just changing
cfg(target_os = "ios")
intocfg(any(target_os = "ios", target_os = "tvos"))
. I already made some progress in this commit. I got a Bevy example to build and install, but it would immediately crash upon launch. See bevy#13058Describe alternatives you've considered
Don't support tvOS.
Additional context
None
The text was updated successfully, but these errors were encountered: