Describe the Feature
While creating a new project with react-native init, we're automatically installing pods, (and sometimes it can cause errors, and non-advanced users creates issues that init command doesn't work, which isn't actually true),
Solution
We want to move part with installing pods to moment, when user runs app part via (run-ios / build-ios / or by pressing "Play" button in Xcode), then we'll check if user installed pods or not. If not we'll prompt user to install pods.
Also we would like to check if dependencies changed in package.json, if yes - we'll prompt user to run pod install, before starting the build.
Describe the Feature
While creating a new project with
react-native init, we're automatically installing pods, (and sometimes it can cause errors, and non-advanced users creates issues thatinitcommand doesn't work, which isn't actually true),Solution
We want to move part with installing pods to moment, when user runs app part via (
run-ios/build-ios/ or by pressing "Play" button in Xcode), then we'll check if user installed pods or not. If not we'll prompt user to install pods.Also we would like to check if dependencies changed in
package.json, if yes - we'll prompt user to run pod install, before starting the build.