From 8c96af029620907ff937038d68d09035b30b97ea Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Tue, 3 Jan 2017 17:13:12 -0800 Subject: [PATCH] Force install Android apps (does not work on < API 16 devices, can fix the version check?) --- lime/tools/helpers/AndroidHelper.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lime/tools/helpers/AndroidHelper.hx b/lime/tools/helpers/AndroidHelper.hx index 621405a3d..40501db2b 100644 --- a/lime/tools/helpers/AndroidHelper.hx +++ b/lime/tools/helpers/AndroidHelper.hx @@ -230,11 +230,11 @@ class AndroidHelper { var args = [ "install", "-r" ]; - if (getDeviceSDKVersion (deviceID) > 16) { + //if (getDeviceSDKVersion (deviceID) > 16) { args.push ("-d"); - } + //} args.push (targetPath);