There does not seem to be TVOS support for asyncstorage
pod 'RNCAsyncStorage', :path => '../../node_modules/@react-native-community/async-storage'
and this gives error:
[!] The platform of the target RNVAppTVOS (tvOS 12.0) is not compatible with RNCAsyncStorage (1.5.0), which does not support tvos.
Seems like there is some support for TV_OS, but original authors left a note that it might not work as expected
cc @tido64
just edit the podspec file from s.platform =:ios, "9.0" to s.platform =:tvos, "9.0" then it works
Sounds like we can change this to:
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
@MwareSolutons Are you working with tvOS? It would be awesome if you could test this and submit a PR if everything works as expected.
Hi Tido64 that worked perfectly just tested it thanks !
@tido64 Do you think that we could add this target to podspec?
Sorry, I've been out (and still am). Does #167 solve your issue?
thanks.