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