Android

Opening Apps on Android via ADB

As a way to run and open apps installed on Android devices, there is a method using ADB (Android Debug Bridge).

Shou Arisaka
1 min read
Nov 3, 2025

As a way to run and open apps installed on Android devices, there is a method using ADB (Android Debug Bridge).

(List executable packages (apps) installed)

adb shell pm list packages

Example

adb.exe -s BH901B6F5L shell pm list packages

Change “your.app.package.name” to any package name and execute the following:

adb shell monkey -p your.app.package.name 1

Example

adb.exe -s BH901B6F5L shell monkey -p com.yuis_ice.clipboard_automation 1

(Reference)

How to start an application using android ADB tools? - Stack Overflow

Share this article

Shou Arisaka Nov 3, 2025

🔗 Copy Links