Fix Xcode 12 compatibility

Compilation fails on Xcode 12 with `Undefined symbols for architecture` errors, due to the React dependency in the podspec.

See the react-native issue here - https://github.com/facebook/react-native/issues/29633#issuecomment-694187116
This commit is contained in:
Adrian Stein 2020-12-08 10:53:40 +10:00 committed by GitHub
parent 977c9853e3
commit 4b6c9f9836
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,5 +18,5 @@ Pod::Spec.new do |s|
s.source_files = 'iOS/*.{h,m}'
s.source = { :git => 'https://github.com/kevinresol/react-native-default-preference.git' }
s.dependency 'React'
s.dependency 'React-Core'
end