Skip to content

Commit

Permalink
Attempt to (un)install APK even if waiting for the core process timed…
Browse files Browse the repository at this point in the history
… out.

This fixes the behaviour to match what the log output claims is happening.
  • Loading branch information
orrc committed Feb 13, 2015
1 parent bd2fbec commit 053d17f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
boolean ready = waitForCoreProcess(build, launcher, androidSdk, deviceIdentifier);
if (!ready) {
AndroidEmulator.log(logger, Messages.CORE_PROCESS_DID_NOT_START());
return false;
}

// Uninstall APK first, if requested
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
boolean ready = waitForCoreProcess(build, launcher, androidSdk, deviceIdentifier);
if (!ready) {
AndroidEmulator.log(logger, Messages.CORE_PROCESS_DID_NOT_START());
return false;
}

// Execute uninstallation
Expand Down

0 comments on commit 053d17f

Please sign in to comment.