Increase android emulator startup await

This commit is contained in:
Mikhael Bogdanov
2017-12-06 10:52:09 +01:00
parent 5d44037a2b
commit 60b812e3dd
@@ -157,7 +157,7 @@ public class Emulator {
bootCheckCommand.addParameter("sys.boot_completed");
int counter = 0;
RunResult execute = RunUtils.execute(bootCheckCommand);
while (counter < 12) {
while (counter < 20) {
String output = execute.getOutput();
if (output.trim().endsWith("1")) {
System.out.println("Emulator fully booted!");