Watchman is a tool used in React Native projects. What is its main purpose?
Think about what happens when you save a file during development.
Watchman monitors file changes and quickly informs the React Native packager to reload or rebuild, improving development speed.
You try to run your React Native app on iOS but Xcode is missing. What will happen?
Consider what Xcode provides for iOS app development.
Xcode includes the iOS SDK, simulators, and build tools. Without it, building or running iOS apps is not possible.
During React Native setup, Node.js is installed. What role does Node.js play in the app development lifecycle?
Think about how JavaScript code runs and how packages are managed.
Node.js runs the JavaScript runtime environment and manages packages with npm or yarn, essential for React Native development.
To test React Native apps on Android emulators, which Android Studio component must be installed and configured?
Think about how you run apps on virtual Android devices.
The AVD Manager lets you create and run Android emulators, which are needed to test React Native apps without a physical device.
After completing environment setup, your React Native app does not launch on the iOS simulator. Which issue is most likely causing this?
Check if Xcode command line tools are properly set up.
Even if Xcode is installed, missing or unselected command line tools cause build failures on iOS simulators.