Debugging Android wirelessly for React Native (made easy)

Robert O'Connor
1 min readMay 31, 2021

--

Running the Android emulator is an option, but it can be sluggish. Not to mention it takes up more laptop battery and more screen space.

Luckily the Android Debug Bridge (adb) supports wireless debugging!

Here’s how to set it up for your React native project.

Add this script to your package.json.

"android-wifi": "adb kill-server && adb tcpip 5555 && adb connect 192.168.2.58:5555 && adb devices"

You should replace the IP address in the above script with your phone IP. This can be found under Settings > About > Status > IP address

Note: (For this to work, your phone should have been connected to your computer at least once to accept the computer as a trusted device. Also, your phone should be on the same wifi network as your computer.)

Next run the script in your terminal: (yarn android-wifi or npm run android-wifi). The script should finish by outputting the list of connected devices.

List of devices attached
192.168.2.58:5555 device

And that’s it. Disconnect your phone and boom! You can now debug your React native project on an Android phone wirelessly. Have fun!

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Robert O'Connor
Robert O'Connor

Written by Robert O'Connor

Robert is a Senior Developer for Web & Mobile currently working at VROMO, with a BSc. in Computer Games Development, University of Limerick. robertfoconnor.com

No responses yet

Write a response