alinz / react-native-share-extension

react-native as an engine to drive share extension
MIT License
763 stars 398 forks source link

Update README.md #42

Closed njt1982 closed 7 years ago

njt1982 commented 7 years ago

https://stackoverflow.com/a/41722530/224707

As of React Native 0.40 (see release notes), native code on iOS must refer to headers out of the react namespace. Previously the following would work:

#import "RCTBundleURLProvider.h"

But now all headers have been moved:

#import <React/RCTBundleURLProvider.h>
alinz commented 7 years ago

@njt1982 thanks