(Android) Don't uninstall the app when --no-reset is used.

This commit is contained in:
Payman Delshad
2013-11-01 09:25:38 +01:00
parent 608c87a44b
commit 2502ffdd0d

View File

@@ -24,7 +24,7 @@ var Android = function(opts) {
Android.prototype.initialize = function(opts) {
this.compressXml = opts.compressXml;
this.skipUninstall = opts.fastReset;
this.skipUninstall = opts.fastReset || !opts.reset;
this.rest = opts.rest;
this.webSocket = opts.webSocket;
opts.systemPort = opts.systemPort || 4724;