Download Android Apps and Games
AppBrain
  • Apps
  • Apps being viewed right now Trending apps today Most popular apps All-time most downloaded apps Top rated apps
  • Intelligence ▾
    Intelligence overview → Track any Android app or your whole market
    Track & analyze
    Keyword Tracker & OptimizerTrack & improve Play rankings App Performance ReportOne-off PDF for any app StatisticsFree Android & Play market stats
    Promote your app
    Featured Apps App Links
  • Intelligence
  • Pricing
  • Dashboard
  • Sign up
  • Log in
Last updated on: 2026-05-22
Android Apps > Tools > ADB Shell [Tasker Plugin]
ADB Shell [Tasker Plugin] icon

ADB Shell [Tasker Plugin]

6.3b
Jolan Rensen
4.21
212 reviews
100,000+
Downloads
Free

Tasker plugin to perform a shell command on an ADB-enabled device.

Not recently updated — last update was on 2020-01-16. This app may no longer be actively maintained.
ADB Shell [Tasker Plugin] Screenshot 1 of 3
ADB Shell [Tasker Plugin] Screenshot 2 of 3
ADB Shell [Tasker Plugin] Screenshot 3 of 3

Alternative downloads for the ADB Shell [Tasker Plugin] app

ADB Shell Commands Toolkit icon ADB Shell Commands Toolkit
kashifrazaciit
3.8
Free
10,000+
Remote ADB Shell icon Remote ADB Shell
Cameron Gutman
3.9
Free
500,000+
ADB OTG - Shell icon ADB OTG - Shell
Gaming Tech Ventures
3.8
Free
100,000+
AutoVera icon AutoVera
joaomgcd
4.0
Free
10,000+
P2P ADB, Phone To Phone ADB icon P2P ADB, Phone To Phone ADB
jake77
3.6
Free
10,000+
ADB Shell - Debug Toolbox icon ADB Shell - Debug Toolbox
ColorBox Technology
4.2
Free
1,000,000+
ADB Shell - Debug Toolbox Pro icon ADB Shell - Debug Toolbox Pro
ColorBox Technology
4.7
$3.99
10,000+
LADB — Local ADB Shell icon LADB — Local ADB Shell
tytydraco
3.5
$2.99
50,000+

ADB Shell [Tasker Plugin] compared with similar apps

Keywords that only this app has

Work Enabled Tips Send Input Action Task Multiple Power Press Reboot Adblib Library Store Details Id Files Sky Limit Google Added Single Put Trust Output Accessing Key Make Keyevent Open Idea Cgutman Thread

Common keywords of similar apps

Tasker Device Adb Plugin Command App Https Shell Commands Wifi Apps Remote Connection Connect Root

Keywords missing from this app

Support Devices Phone Home Control Usb Debugging Fastboot Recent Application Otg Autovera Wireless Features Information Enable Mode System Debug Data Ladb Terminal Computer Autotools Powerful Running Run Cable File Required Network Screen Text Tcp Directly

More from Jolan Rensen

Widget Screensaver icon Widget Screensaver
Jolan Rensen
4.2
Free
50,000+
Hotword Plugin Free [Tasker Pl icon Hotword Plugin Free [Tasker Pl
Jolan Rensen
2.5
Free
50,000+
Hotword Plugin [Tasker Plugin] icon Hotword Plugin [Tasker Plugin]
Jolan Rensen
3.6
$1.99
1,000+

About ADB Shell [Tasker Plugin]

ADB Shell [Tasker Plugin] is a tools app developed by Jolan Rensen.

How many times has ADB Shell [Tasker Plugin] been downloaded?

ADB Shell [Tasker Plugin] has been downloaded 120 thousand times. In the last 30 days, the app was downloaded 140 times.

What is the rating of ADB Shell [Tasker Plugin]?

ADB Shell [Tasker Plugin] is rated 4.21 out of 5 stars, based on 210 ratings.

Is ADB Shell [Tasker Plugin] free?

ADB Shell [Tasker Plugin] is free to download. The APK download size is 2.67 MB. The latest version available is 6.3b. The last update was on January 16, 2020.

What are the requirements for ADB Shell [Tasker Plugin]?

ADB Shell [Tasker Plugin] requires Android 4.4+ or higher. The app has a content rating of Everyone. The app has been available on Google Play February 2017.

Description
This Tasker plugin allows you to send a (series of) ADB Shell command(s) to a remote device (or the device itself) that has ADB over WiFi enabled.
This app obviously does need Tasker to work as it's a plugin (https://play.google.com/store/apps/details?id=net.dinglisch.android.taskerm, this is a paid app with a 7 days free trial). Again, without Tasker it WON'T WORK. Was I clear enough? Anyways...

On the target device you can do anything you would normally be able to do when using the terminal or ADB Shell of that device. This includes opening apps, moving files, simulating input et cetera (The sky is the limit and Google is your friend).

My app can be used as an action in Tasker and needs to be configured properly when added to a task to work.

NOTE:
- You can send multiple commands at once by separating them with a ";".
- All commands in a single action are automatically followed with an "exit" command so to close the ADB connection. This means that if you want to send multiple commands that are depending on each other, you will need to put them in a single Tasker action and separate them with ";".
- If you want multiple actions of my plugin to run after each other in a Tasker task, please keep the timeout set as is. Tasker will continue when the command is sent.
- The first time you try to connect to another device via ADB it will ask you if you trust the device. For this plugin to work correctly, you'll need to always "trust this computer".
- The output of the console can be viewed and reused from within Tasker. This can be done by accessing %output1, %output2 etc. or by iteration over %output() using a for loop.
- The plugin will generate two key files on your device to be able to make a secure ADB connection to the devices.

Now for some useful commands!
- A command I myself use a lot is to turn my ADB over WiFi enabled AndroidTV (Nvidia SHIELD) on or off by sending the command "input keyevent POWER", this simulates a power button press.
- Of course you can vary which key to press, for example to press the arrow keys you can do "input keyevent DPAD_RIGHT" or “…LEFT” etc.
- Another simple command is "reboot", which will, you guessed it, reboot the device! You can also put "reboot -p" here to power it down.
- A cool thing to be able to do is to launch apps on the device. You will have to Google a bit to find the Main activity of an app. This example will open Chrome on the device: "am start -n com.android.chrome/com.google.android.apps.chrome.Main".
- When you fill in “localhost” in the IP address field, every command will be executed on the device itself! This works even without root if you, of course, have ADB over WiFi enabled (can be activated from a pc using “adb tcpip 5555”).
Of course there are many other commands, the sky is the limit!
This is my first ever published app, so please leave feedback and submit bugs so I can try my best to fix them! Any tips are more than welcome!

The idea to create this app came from https://play.google.com/store/apps/details?id=com.cgutman.androidremotedebugger, which allows the user to connect to a remote device via an interface in the app itself. Please read the description of that app too, it contains some tips on enabling ADB over WiFi. I use the same AdbLib Java library in my app.

I use the AdbLib library found at https://github.com/cgutman/AdbLib and use https://github.com/cgutman/AdbLibTest as an example for how to use the library. I adapted this example to work with a given command and converted it to a Tasker plugin.

For help, you can email me or visit the XDA-Developers thread at https://forum.xda-developers.com/u/tasker-tips-tricks/plugin-remote-adb-shell-t3562013. This thread also contains some useful tips for accessing the local device running the task without root.

Now open source at https://github.com/Jolanrensen/ADBPlugin!

Recent changes:
• 6.3
- Plugin is now way faster using Tasker's intent service system!
- Added donation option
- a: small bugfix
- b: reverted something to make it faster

• 6.2
- Thanks to those who do not understand that this is a Tasker Plugin. Because of you I got the idea you should be able to test the plugin without Tasker, so now you can!
- Let's see if this takes care of the 1 star reviews haha
Show more Show less

More data about ADB Shell [Tasker Plugin]

Price Free to download
Total downloads 120 thousand
Recent downloads 140
Rating 4.21 based on 210 ratings
Ranking Not ranked
Version 6.3b
APK size 2.67 MB
Number of libraries 17
Designed for Android 4.4+
Suitable for Everyone
Ads NO ads

App Performance Report

Get a detailed PDF report for ADB Shell [Tasker Plugin] with download trends, rating history, and key performance statistics — useful for competitive research or tracking your own app. Learn more

Get PDF Report — $29

Google Play Rating history and histogram

150
6
31
0
24

Downloads over time

ADB Shell [Tasker Plugin] has been downloaded 120 thousand times. Over the past 30 days, it has been downloaded 140 times.

Changelog of ADB Shell [Tasker Plugin]

  • Dec 7, 2022Installs100,000+ installs
  • Jan 18, 2022Installs50,000+ installs
  • Jan 16, 2020UpdateVersion 6.3b
  • Jan 2, 2020UpdateVersion 6.3a
  • Aug 14, 2019UpdateVersion 6.2
  • Mar 10, 2019Installs10,000+ installs
  • Nov 6, 2018UpdateVersion 6.1
  • Oct 28, 2018UpdateVersion 6.0
  • Apr 29, 2018Installs5,000+ installs
  • Aug 30, 2017UpdateVersion 5.0
  • Aug 22, 2017Installs1,000+ installs
  • Jul 2, 2017Installs500+ installs
  • May 9, 2017UpdateVersion 4.3
  • Mar 30, 2017Installs100+ installs
  • Mar 19, 2017Installs50+ installs
  • Feb 27, 2017UpdateVersion 4.2
  • Feb 25, 2017New AppVersion 4.1 in TOOLS for Free
Show more Show less

Developer information for Jolan Rensen

Jolan Rensen

jolanrensen@gmail.com

Website

N/A

Are you the developer of this app? Join us for free to see more information about your app and learn how we can help you promote and earn money with your app.
I'm the developer of this app

Share ADB Shell [Tasker Plugin]

Comments on ADB Shell [Tasker Plugin] for Android

★★★★★ Franziskus Heblich · Dec 21, 2020
Was the only plug in that managed to start an app with a different user profile. Am start --user 10 -n "XXX/YYY" -an android.intent.action.MAIN -c android.intent.category.LAUNCHER. Edit: Did not work in Taskers adb Wi-Fi task itself. Now I can access it in Tasker with this via this plugin. Good job very happy.
★★★★☆ Sergej van Holland · Dec 9, 2017
Excellent app but I'd like to issue the full commands myself instead of entering the words after "adb shell" Can't seem to get the command "adb shell wm density" to work. Can this app issue all adb commands? Ps. I tried the density command from a normal adb console and that worked.
★★☆☆☆ Matthew Schoeneman · Jan 2, 2018
Latest version, can run shell commands one initial time then cannot run again.
★☆☆☆☆ Scott Warfield · Oct 13, 2020
Trying to send a key event to an android tv device doesn't work. Command works from computer but not with this. Input key event 164 50ms. Mute/unmute

Google Play Rankings for ADB Shell [Tasker Plugin]

This app is not ranked

Technologies used by ADB Shell [Tasker Plugin]

ADB Shell [Tasker Plugin] is requesting 6 permissions and is using 18 libraries.

Permissions

Development tools
test access to protected storage
Network communication
view network connections, full network access, Google Play billing service
Storage
modify or delete the contents of your USB storage
Extra
android.permission.FOREGROUND_SERVICE

Ad network libraries

None found

Social libraries

None found

Development tools

Android Jetpack core Android Library IconAndroid Jetpack core Android Architecture Components Android Library IconAndroid Architecture Components Android Jetpack VersionedParcelable Android Library IconAndroid Jetpack VersionedParcelable Android Jetpack Annotations Android Library IconAndroid Jetpack Annotations Android Jetpack Widgets Android Library IconAndroid Jetpack Widgets Android Jetpack AppCompat Android Library IconAndroid Jetpack AppCompat AndroidX Activity Android Library IconAndroidX Activity Android Activity Saved State Android Library IconAndroid Activity Saved State AndroidX Loader Android Library IconAndroidX Loader Android Transition Support Library Android Library IconAndroid Transition Support Library Android Support Library collections Android Library IconAndroid Support Library collections Kotlin Android Library IconKotlin Android Support VectorDrawable Android Library IconAndroid Support VectorDrawable AndroidX Cursor Adapter Android Library IconAndroidX Cursor Adapter JetBrains Annotations Android Library IconJetBrains Annotations IntelliJ IDEA Android Library IconIntelliJ IDEA Locale Android Library IconLocale
Top new apps Apps on sale Popular Tools Apps Today's trending apps Apps other people are watching
ADB Shell Commands Toolkit icon ADB Shell Commands Toolkit
Remote ADB Shell icon Remote ADB Shell
ADB OTG - Shell icon ADB OTG - Shell
AutoVera icon AutoVera
P2P ADB, Phone To Phone ADB icon P2P ADB, Phone To Phone ADB
ADB Shell - Debug Toolbox icon ADB Shell - Debug Toolbox
ADB Shell - Debug Toolbox Pro icon ADB Shell - Debug Toolbox Pro
LADB — Local ADB Shell icon LADB — Local ADB Shell

Back to top
AppBrain Intelligence premium content

Subscribe now to get full and unlimited access to AppBrain Intelligence. You'll have access to:

  • App Intelligence dashboard (performance timeline, competitor comparison, country rankings, insight cards)
  • Detailed ranking data per app
  • Full timeline per developer
  • Device market shares data per country
1 Month

$75/mo
(billed every month)

SAVE 0%
Subscribe
3 Months

$65/mo
($195 billed every 3 months)

SAVE 13%
Subscribe
1 Year

$57.50/mo
($690 billed every year)

SAVE 23%
Subscribe
Each subscription will automatically renew 3 days before the expiration date for the same time period. Subscriptions can be cancelled at any time before the renewal.

AppBrain is a directory focused on discovering great apps and games. We give statistics, rankings and search options that Google Play and the App Store don't have. All trademarks are owned by their respective owners. AppBrain doesn't offer APKs or binaries, and always lets users install the official version from Google Play or the App Store.

More apps

  • Top Android apps being viewed
  • Manta - Manga, Manhwa, Novels
  • Healthy Kitchen: Meal Planner
  • View siri tv

Android Statistics

  • Android statistics
  • Google Play Developer stats
  • Trending Android Apps
  • Top popular Apps
  • Buy the best Android phone

About AppBrain

  • Contact
  • Privacy
  • Documentation
  • DMCA takedowns
  • Articles
  • Blog
  • Android app Install tracking and attribution options for the AppBrain ad network
© 2010-2026 - AppBrain