Remote ADB Shell

4.0
914 reviews
500K+
Downloads
Content rating
Everyone
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image

About this app

Remote ADB Shell is a terminal app that allows you to connect to the ADB shell service of other Android devices over the network and execute terminal commands. This can be useful for remotely debugging Android devices (running tools like top, logcat, or dumpsys). It supports multiple simultaneous connections to different devices and keeps these connections alive even when the app is in the background. This app does not require root on either device, but root may be helpful to configure the target devices. If the target devices are not rooted, you must use a computer with the Android SDK and Google USB drivers to configure the them (detailed below).

This app is a wrapper around the shell that is exposed over ADB. It maintains a 15 command history which is accessible by long pressing the command box. Long pressing the terminal display itself will give the option to send a Ctrl+C, toggle auto-scrolling, or exit the terminal session.

This works in the exact same way that the "adb shell" command works on a computer. Because this app uses a native implementation of the ADB protocol in Java, it does not require root on either device or any 3rd party apps on the target device. The devices simply speak the same protocol to each other that they would to a computer running the ADB client from the Android SDK.

IMPORTANT: Devices running Android 4.2.2 and later use RSA keys to authenticate the ADB connection. In my testing, devices running 4.2.2 will need to be plugged in to a computer the first time you connect to them (from each device with this app installed). This allows them to display the public key acceptance dialog, which you must accept (and check "Always allow from this computer"). Devices running Android 4.3 and 4.4 seem to have no problem displaying the dialog without a connection to a computer, so it looks like this is a workaround specific to Android 4.2.2.

To configure a stock un-rooted target, plug the target device into a computer that has the Android SDK installed and run "adb tcpip 5555" from the Android SDK's platform-tools folder. This will start ADB listening on port 5555 on the target device. The device can then be unplugged and will remain configured properly until reboot.

For devices that are rooted (although it's not required), you can install one of the several "ADB WiFi" apps to enable the ADB server to listen over the network. Devices with a custom ROM may have an option to enable ADB over the network in the Developer Options pane of Settings. Using either of these methods will properly configure ADB for network access with this app. The extra step for 4.2.2 is still required for the initial connection.

To connect to your remote Android device, type in the IP address of the device and the port number (5555 from the example above) in Remote ADB Shell. Tap Connect and it will attempt to connect to the device and start up the terminal.

Developers: The custom Java ADB library I've written for this app is open-source under the BSD license at https://github.com/cgutman/AdbLib

The source for this app is available under the Apache license: https://github.com/cgutman/RemoteAdbShell
Updated on
Jun 28, 2022

Data safety

Safety starts with understanding how developers collect and share your data. Data privacy and security practices may vary based on your use, region, and age. The developer provided this information and may update it over time.
No data shared with third parties
Learn more about how developers declare sharing
No data collected
Learn more about how developers declare collection

Ratings and reviews

4.1
851 reviews
minsiam 2
November 19, 2021
BEST APP I HAVE EVER SEEN! Highly recommended, I have a tv where many settings ain't available and I have to use adb to allow permissions and enable some settings. And you know turning on pc every time for that is just a waste of time... That's why I like it so much now I can use adb shell from my phone which is great! And to them who are having problems pasting text to the app, Download Gboard then use clipboard to paste! Thanks developers. I will keep supporting you.
50 people found this review helpful
Did you find this helpful?
Harry Pollard
December 28, 2021
It's not often I review apps but this was so disappointing it's worth it. If you're only running a couple of simple commands this works completely fine but running anything that requires user input is a horrible experience (top is impossible to use for example). Sadly this is the only android app that does this.
30 people found this review helpful
Did you find this helpful?
Cal Malouin
January 8, 2021
5 stars because it's free! Only issue - and others have mentioned it - is it doesn't disconnect. This may actually be better than the alternative, because it works so damn well as it is. When you are done, just force-stop the app (easy!). Thanks dev!
46 people found this review helpful
Did you find this helpful?

What's new

v1.7.2
- Fixed several reported crashes