Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "fix: Xcode 12 compatibility (#209)"
This reverts commit 2502ffd.
- Loading branch information
b648af6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Agontuk what was the reason for reverting this? My understanding is that it's needed to allow building on newer versions of React Native.
b648af6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My build was failing after this change, so reverted it. Can you tell me from which RN version is the new change needed ?
b648af6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good question - I think it's the combination of Xcode 12+ and RN 0.64, but we jumped from 0.63 to 0.66 recently so not 100% sure. Definitely after 0.63.x
b648af6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can still build RN 0.65 without the change, will check 0.66
b648af6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A project that has
use_frameworks!
for using this and other pods as a framework will not build unlesss.dependency "React-Core"
is patched into this file. At least, that's true onreact-native v0.66.3
.Explanation: facebook/react-native#29633 (comment)