Kureev / react-native-blur

React Native Blur component
MIT License
3.74k stars 555 forks source link

tvOS / Apple TV Support #175

Open alexthegoodman opened 7 years ago

alexthegoodman commented 7 years ago

Anybody else hoping to integrate this now?

alexthegoodman commented 7 years ago

For any other curious individuals, a good guy helped out here: https://github.com/react-native-community/react-native-svg/issues/304#issuecomment-293257574

JulienKode commented 7 years ago

@alexthegoodman this library is now compatible with tvOS

You can see

Kureev commented 7 years ago

Yes, there is at least a basic tvOS support.

Probably we can benefit from having it explicitly in the README. Would you like to compose a PR?

CHaNGeTe commented 4 years ago

I think this is an old issue, but anyways: if it helps, I was having issues with 3.6.0 but changing this make it work: #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000

to: #if !TARGET_OS_TV && defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000

nriccar commented 2 years ago

Thank you Changete. Why not add that to the repo?

ericlifs commented 2 years ago

Can we fix this please? Is just merging that PR.