Reputation: 11
I'm learning react and i want to debug my app using my android device but i don't want to use the Expo Go app.
Tried these commands as per my research but none of these works:
Did i miss something during react native or expo installation/setup?
Upvotes: 1
Views: 518
Reputation: 1
While you can run and debug your React Native Expo app on your Android device without using the Expo Go app, it's important to mention that the experience is generally better and easier when you use Expo Go. This is due to the integration and simplified debugging tools it provides.
Note: The expo start --localhost --android
commands would normally work if you are using the Expo Go app.
Upvotes: 0