TV Support
#1282
Replies: 2 comments 1 reply
|
Hey, yeah, tv is on my todo, same as for macos catalyst. Thing is, the framework I use for storage implementation does not support TV. That means, scoped storages won't be supported (but only one storage, similar to how it is now in v2) |
1 reply
|
Yes — v3 intentionally dropped tvOS support. You can see it in the current podspec: s.platforms = { :ios => "13.0", :osx => "12.0", :visionos => "1.0" }There is no So your practical options are: {
"dependencies": {
"@react-native-async-storage/async-storage": "^2.1.0"
}
}
If you are already on a working tvOS build, I would not upgrade this package to v3 until tvOS is added back. The API surface is similar, but platform support changed. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have been using v2 async-storage on my TV app but it seems on v3 support is dropped. I could not find any official documentation about it. Was it intentional? Thanks
All reactions