In the past, the android simulator was painfully slow and I use the device only to debug the android applications.
What's the preferred development environment, simulator, or device for React native application?
In the past, the android simulator was painfully slow and I use the device only to debug the android applications.
What's the preferred development environment, simulator, or device for React native application?
Actually, emulator can be super fast given the fact that you can configure them as you want (Giving as many RAM as your computer has).
My job is to do mobile app with RN and I almost only user the emulator. For the feature that does not work on it (Opening file with app proposition, for example), I'm using a device.
I also stopped using the debug mode for Android because it is so slow! If you want to look at the console.log
, you can open a terminal at the root of your project and run react-native log-android
. It will allow to see the log without being force into debugging