Xcode doesn't build on release mode.

react-native-svg v6.0.0-rc1
Turns out yarn doesn't support submodules (yarnpkg/yarn#1488),
so running npm install instead of yarn does the trick.
--
yarn v1.0.0
npm v5.4.2
I used yarn exclusively to build RC1 into a fresh project without any issue:
However, I didn't use xcode to build directly:
$: react-native init test
$: cd test
$: yarn add react-native-svg
$: react-native link
$: react-native run-ios
The build tested fine on both android and iOS.
versions:
[email protected]
[email protected]
[email protected]
[email protected]
@dk0r did you test on release build? I didn't get the error on debug build.
PS: I'm using xcode 9.1 beta.
Most helpful comment
Turns out
yarndoesn't support submodules (yarnpkg/yarn#1488),so running
npm installinstead ofyarndoes the trick.--
yarn v1.0.0
npm v5.4.2