Force install Android apps (does not work on < API 16 devices, can fix the version check?)

This commit is contained in:
Joshua Granick
2017-01-03 17:13:12 -08:00
parent 4ea2904f33
commit 8c96af0296

View File

@@ -230,11 +230,11 @@ class AndroidHelper {
var args = [ "install", "-r" ]; var args = [ "install", "-r" ];
if (getDeviceSDKVersion (deviceID) > 16) { //if (getDeviceSDKVersion (deviceID) > 16) {
args.push ("-d"); args.push ("-d");
} //}
args.push (targetPath); args.push (targetPath);