Skip to content

Commit aaeffdb

Browse files
tido64facebook-github-bot
authored andcommitted
Fix "'RCTBlobPlugins.h' file not found" on iOS (#29684)
Summary: Fixes iOS builds failing with the following error in certain setups: ``` /~/Pods/React-RCTBlob/Libraries/Blob/RCTBlobPlugins.mm:14:9: fatal error: 'RCTBlobPlugins.h' file not found #import "RCTBlobPlugins.h" ^~~~~~~~~~~~~~~~~~ 1 error generated. ``` ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://github.com/facebook/react-native/wiki/Changelog --> [iOS] [Fixed] - "'RCTBlobPlugins.h' file not found" when building iOS Pull Request resolved: #29684 Test Plan: - Existing builds should not fail - Tested this change internally where we are seeing this build failure cc hramos Reviewed By: fkgozali Differential Revision: D23581090 Pulled By: appden fbshipit-source-id: 89d2088c362bfbd22df5cd098b110a43d76e784f
1 parent 67af6e5 commit aaeffdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Libraries/Blob/React-RCTBlob.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Pod::Spec.new do |s|
2929
s.platforms = { :ios => "10.0", :tvos => "10.0" }
3030
s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness'
3131
s.source = source
32-
s.source_files = "*.{m,mm}"
32+
s.source_files = "*.{h,m,mm}"
3333
s.preserve_paths = "package.json", "LICENSE", "LICENSE-docs"
3434
s.header_dir = "RCTBlob"
3535
s.pod_target_xcconfig = {

0 commit comments

Comments
 (0)