The simple way to speed up pod install it's turn off Flipper for CI builds.
1) For old React Native versions 0.68.x and lower edit your ios/Podfil...
For further actions, you may consider blocking this person and/or reporting abuse
Any ideas about Android?
flipper is disabled by default on Android
nope this is not correct.
before React
0.73
the Flipper will be include only in debug buildsstaring from
0.74
the reference you gave is of v0.72.
v0.73 check
https://react-native-community.github.io/upgrade-helper/?from=0.72.10&to=0.73.2#:~:text=facebook.react%3Aflipper%2D-,integration,-%22)
v0.74 not released yet but agree without it's going to be removed.
How do you pass the
NO_FLIPPER
to xcode? And will it be propagated correctly (how)? I'm asking because I still get theFlipperKit/FlipperClient.h
not found error after adding these lines inreact-native.config.js
.NO_FLIPPER=1
usually used on CI, locally it's ok to have installed FlipperIt really depends, for example we use react native Firebase which prevents using flipper, even locally. I think its worth describing how to edit
.xscheme
files to set (or not) the env variable to 1.In our case we simply disabled flipper without using any configuration because we have no solution yet to make it work in any case. So we simply have:
And
Also I think many people don't use CI to build iOS apps because its hard (expensive) to get hands on a machine that can run xcodebuild.
got it, maybe it will help stackoverflow.com/a/74254208/7456314?
Maybe, I never tried myself because I ended up removing the option to enable flipper, but I guess it should work.
this post helped me. thanks