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:
Riccardo Cipolleschi
2025-01-17 05:07:05 -08:00
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