adbkit-monkey icon indicating copy to clipboard operation
adbkit-monkey copied to clipboard

Does it supports Raw commands like -p package.name -v 5000

Open shri-0509 opened this issue 5 years ago • 2 comments

@sorccu Just had one question can we run something like adb shell monkey -p package -v 5000 using this library?

shri-0509 avatar Aug 29 '19 11:08 shri-0509

Issue-Label Bot is automatically applying the label question to this issue, with a confidence of 0.91. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback!

Links: app homepage, dashboard and code for this bot.

issue-label-bot[bot] avatar Aug 29 '19 11:08 issue-label-bot[bot]

Had same question. My workaround is directly use adbkit instead of adbkit-monkey

var adb = require('adbkit');
var client = adb.createClient();
client.shell(device.id,"monkey -p com.package 1");

giorgosioak avatar Jul 05 '20 13:07 giorgosioak