Closed barbosa closed 5 years ago
Default React pod does not include DevSupport subspec as a dependency by default.
React
DevSupport
Having only React listed here raises the following compilation error:
▸ Compiling RNDevMenu.m ❌ /Users/me/Developer/project/node_modules/react-native-dev-menu/ios/RNDevMenu.m:1:9: 'React/RCTDevMenu.h' file not found #import <React/RCTDevMenu.h>
After including React/DevSupport as an additional subspec, it raises:
React/DevSupport
▸ Compiling RCTBlobManager.mm ❌ /Users/me/Developer/project/node_modules/react-native/Libraries/Blob/RCTBlobManager.mm:13:9: 'React/RCTNetworking.h' file not found #import <React/RCTNetworking.h>
So we have to also include React/RCTNetwork (which is also not included in React/Core).
React/RCTNetwork
React/Core
Thanks!
Default
React
pod does not includeDevSupport
subspec as a dependency by default.Having only
React
listed here raises the following compilation error:After including
React/DevSupport
as an additional subspec, it raises:So we have to also include
React/RCTNetwork
(which is also not included inReact/Core
).