...assuming I'm following them correctly. (using react-native 0.60.0)
A) As soon as I:
- open
./ios/app.xcodeproj with Xcode,
- copy
ART.xcodeproj from node_modules/react-native/Libraries/ART/ into Xcode's app/Libraries
- select
app under TARGETS, tab over to Build Phases > expand Link Binary With Libraries add (+) libART.a
I get a build error when I run react-native run-ios. (See below)
other steps taken:
B) When I then:
- run
npm install react-native-barcode-builder --save
C) When I then use any order/combination of
react-native link
cd ios && pod install
I get the same build errors every step of the way:
`In file included from ./node_modules/react-native/Libraries/ART/ViewManagers/ARTSurfaceViewManager.m:8:
./node_modules/react-native/Libraries/ART/ViewManagers/ARTSurfaceViewManager.h:8:9: fatal error: 'React/RCTViewManager.h' file not found
#import <React/RCTViewManager.h>`
I'm not sure where to begin with this. Any help would be greatly appreciated!!
...assuming I'm following them correctly. (using react-native 0.60.0)
A) As soon as I:
./ios/app.xcodeprojwith Xcode,ART.xcodeprojfromnode_modules/react-native/Libraries/ART/into Xcode'sapp/LibrariesappunderTARGETS, tab over to Build Phases > expand Link Binary With Libraries add (+)libART.aI get a build error when I run
react-native run-ios. (See below)other steps taken:
B) When I then:
npm install react-native-barcode-builder --saveC) When I then use any order/combination of
react-native linkcd ios && pod installI get the same build errors every step of the way:
I'm not sure where to begin with this. Any help would be greatly appreciated!!