Test an App on Android. React Native

0

Hello, my notebook does not have the option to enable virtualization, so I need a way to test an app I'm making. Does anyone know a way for me to do this on my own smartphone?

    
asked by anonymous 04.12.2018 / 14:01

3 answers

1

Expo is the solution for you. Take a look here: link

But basically, you install the Expo APP on your mobile phone, also install on the project:

npm install expo-cli --global

It will generate a QR code and you use the APP on your cell phone to scan this QR

    
04.12.2018 / 15:14
0

You can do this either using the Expo or the other CLI. But if the project is simple and does not need many native settings I highly recommend the expo. Just run the command: expo start

That it will generate a qrcode, and by reading it using the Expo application, you can test the design on your mobile.

    
04.12.2018 / 17:31
0

You can use the Expo as already mentioned there or debug directly on your cell phone via usb. Just enable your mobile to debug in the developer options.

    
04.12.2018 / 17:45