Avoids manual build configuration, similar to how react native itself integrates with projects
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'RCTImage',
'RCTNetwork',
'RCTText',
'RCTWebSocket',
# Add any other subspecs you want to use in your project
]
Also allowing compiling from source (with Cocoapods) will make debugging easier as well, rather than pre-compiled framework.
Avoids manual build configuration, similar to how react native itself integrates with projects
Also allowing compiling from source (with Cocoapods) will make debugging easier as well, rather than pre-compiled framework.