mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Only include ReactCommon and ios platform for TextInput (#48754)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48754 The React-FabricComponent was importing some non-existent files when we build for iOS with cocoapods. This change fixes it. ## Changelog [Internal] - Only include ReactCommon and ios platform for TextInput Reviewed By: GijsWeterings Differential Revision: D68319960 fbshipit-source-id: 45ddd7765f6afc0efef6dc1dadea782871fbd779
This commit is contained in:
committed by
Facebook GitHub Bot
parent
7278ff01d7
commit
a0ddcd256a
@@ -153,8 +153,8 @@ Pod::Spec.new do |s|
|
||||
ss.subspec "iostextinput" do |sss|
|
||||
sss.dependency folly_dep_name, folly_version
|
||||
sss.compiler_flags = folly_compiler_flags
|
||||
sss.source_files = "react/renderer/components/textinput/**/*.{m,mm,cpp,h}"
|
||||
sss.exclude_files = "react/renderer/components/textinput/platform/android"
|
||||
sss.source_files = "react/renderer/components/textinput/*.{m,mm,cpp,h}",
|
||||
"react/renderer/components/textinput/platform/ios/**/*.{m,mm,cpp,h}"
|
||||
sss.header_dir = "react/renderer/components/iostextinput"
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user