(activityName: string)
| 71 | } |
| 72 | |
| 73 | export async function startAndroidActivity(activityName: string) { |
| 74 | const commandStartActivity = `adb shell am start -n ${activityName}`; |
| 75 | await spawnCliCommand(commandStartActivity, undefined, 'pipe', false, true); |
| 76 | } |
nothing calls this directly
no test coverage detected