Skip to content

Commit 8b6ab1b

Browse files
authored
Update podspec to allow auto-linking for RN
facebook/react-native#25553 (comment) Referencing from this comment, the fix is to update the: `s.dependency 'React'` to `s.dependency 'React-Core` to make everything auto-link properly in iOS. All react-native libraries with native iOS code should be doing this to keep up to date with the requirements in react-native 60 and up.
1 parent 90342fe commit 8b6ab1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RNSha256.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Pod::Spec.new do |s|
1717
s.source_files = "ios/**/*.{h,m,swift}"
1818
s.preserve_paths = "**/*.js"
1919

20-
s.dependency 'React'
21-
end
20+
s.dependency 'React-Core'
21+
end

0 commit comments

Comments
 (0)