I've got a react-native app that builds on AppCenter. I have a Podfile
in my /ios
directory, and locally, I can run pod install
. The AppCenter documentation says that "App Center scans the selected branch and if it finds a Podfile, it will automatically do a pod install step at the beginning of every build. This will ensure that all dependencies are installed.", but as far as I can tell, it's not running pod install
for my build and the build fails for that reason.
Tried adding pod install
to a pre-build script, in which case the build succeeds.