Runner for ADB

291 installs
Ratings not yet available
14 monthly active users
Revenue not available
Install Trends
Weekly +1.00
Steady
Monthly +4.00
Steady

Runner for ADB Summary

Runner for ADB is a mobile Android app in Tools by Thomas Berghuis. Released in Jun 2023 (2 years ago). It has about 291+ installs Based on AppGoblin estimates, it reaches roughly 14 monthly active users . Store metadata: updated Jun 16, 2023.

Recent activity: 1.00 installs this week (4.00 over 4 weeks) showing steady growth View trends →

Store info: Last updated on Google Play on Jun 16, 2023 .


2.86★

Ratings: 0

5★
4★
3★
2★
1★

Screenshots

App screenshot
App screenshot
App screenshot

App Description

Save and run ADB commands from your android device

Runner for ADB lets you save and run ADB commands from your android device.

Device that you wish to run ADB commands against should have wifi debugging enabled.

To make your targeted device accept ADB commands you may need to run:

adb tcpip 5555

You will need to do this using ADB on PC or another app such as LADB.

You can also run ADB command from other apps by sending broadcast with an Intent.

Example code:

val intent = Intent()
intent.action = "dev.tberghuis.adbrunner.RUN_ADB"
intent.putExtra("HOST", "192.168.0.99")
intent.putExtra("ADB_COMMAND", "shell echo hello world")
intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES)
intent.component =
ComponentName("dev.tberghuis.adbrunner", "dev.tberghuis.adbrunner.AdbRunnerBroadcastReceiver")
appContext.sendBroadcast(intent)


Source code: https://github.com/tberghuis/RunnerForAdb