Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Native: Unable to click debugging menu

When pressing + d in the iOS simulator, the debugging menu transitions in slowly. Clicking on any of the options doesn't do anything. I then have to stop the project and start it again.

Xcode 6.4
React-Native 0.11.4 OSX El Capitan

enter image description here

like image 343
Henry Zhu Avatar asked Oct 07 '15 02:10

Henry Zhu


People also ask

How do I use debug mode in React Native?

In App Developer MenuOn Android emulator, you need to press command + M. Debug JS Remotely − Used for activating debugging inside browser developer console. Enable Live Reload − Used for enabling live reloading whenever your code is saved. The debugger will open at localhost:8081/debugger-ui.

How do I enable remote debugging in React Native?

Debugging React Native AppsPress Command + D and a webpage should open up at http://localhost:8081/debugger-ui. (Chrome only for now) or use the Shake Gesture. Enable Pause On Caught Exceptions for a better debugging experience.

How do I open developer menu in iOS React Native?

You can access the developer menu by shaking your device or by selecting "Shake Gesture" inside the Hardware menu in the iOS Simulator. You can also use the ⌘D keyboard shortcut when your app is running in the iOS Simulator, or ⌘M when running in an Android emulator on Mac OS and Ctrl+M on Windows and Linux.


1 Answers

Select your simulator and open "Debug" menu and uncheck "Slow Animations" (or + T) to make the animation speed normal.

like image 185
KChen Avatar answered Oct 23 '22 10:10

KChen