Open vanBrunneren opened 8 years ago
Interesting! It's an issue with the xcode
parser we are using. In the meantime, I'd suggest adding flags manually. Can you drop me your project.pbxproj
to my email (it's inside xcodeproj file, you can cd
from command line into it)? We'll try to check what's going on.
PS. If you need assistance with upgrading, please ping me on Discord in #rnpm channel :)
have the same issue
Same issue here.
Search your project.pbxproj
for OTHER_LDFLAGS
(it's in it multiple times) and make sure it's an array instead of just a string. So
OTHER_LDFLAGS = "-ObjC";
to
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
I think we need to move this issue to react-native. @grabbou, wdyt?
when I try to run your plugin to upgrade from 0.25.1 to 0.26.0 i get the following error:
do you have any idea how to fix this issue or am I doing something the wrong way?