Skip to content

Commit

Permalink
Remove extra space in source_files
Browse files Browse the repository at this point in the history
Summary:
This was causing tvOS builds to fail because .m files weren’t being included.

 - Add `tvOS` subspec to your project with a tvOS target.
 - Build
 - Profit.

[TVOS] [BREAKING] [React.podspec] - Fix building for tvOS with CocoaPods
Closes #18812

Differential Revision: D7680224

Pulled By: hramos

fbshipit-source-id: c6c3b6fb0acd2004579d85c3f72e4edd88e26ed8
  • Loading branch information
hsousa authored and facebook-github-bot committed Apr 19, 2018
1 parent 908e885 commit b92b38a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion React.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Pod::Spec.new do |s|

s.subspec "tvOS" do |ss|
ss.dependency "React/Core"
ss.source_files = "React/**/RCTTV*.{h, m}"
ss.source_files = "React/**/RCTTV*.{h,m}"
end

s.subspec "jschelpers" do |ss|
Expand Down

0 comments on commit b92b38a

Please sign in to comment.