Skip to content

Commit 58361eb

Browse files
authored
Update deploy-apk.js
1 parent 7a44593 commit 58361eb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test-app/tools/deploy-apk.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var proc = require('child_process');
1313

1414
var deployTimeout = 180000; // 3 minutes to deploy and launch.
1515

16-
var cmd = 'adb install -r ' + apk;
16+
var cmd = 'adb -e install -r ' + apk;
1717

1818
function timeoutFunction(msg) {
1919
console.error(msg);
@@ -34,4 +34,4 @@ var testrun = proc.exec(cmd, function (error, stdout, stderr) {
3434
}
3535
});
3636
testrun.stdout.pipe(process.stdout, { end: false });
37-
testrun.stderr.pipe(process.stderr, { end: false });
37+
testrun.stderr.pipe(process.stderr, { end: false });

0 commit comments

Comments
 (0)