Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f0414122 authored by Daniel Norman's avatar Daniel Norman Committed by Android (Google) Code Review
Browse files

Merge "Prepares the main looper for UiAutomator shell command." into main

parents b521d78a 5e92d2e2
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ import android.app.UiAutomation;
import android.app.UiAutomationConnection;
import android.content.Intent;
import android.os.HandlerThread;
import android.os.Looper;
import android.os.RemoteException;

/**
@@ -26,6 +27,10 @@ public class UiAutomationShellWrapper {
            throw new IllegalStateException("Already connected!");
        }
        mHandlerThread.start();
        // The AccessibilityInteractionClient used by UiAutomation expects the main looper to
        // be prepared. In most contexts this is normally done automatically, but must be called
        // explicitly here because this is a shell tool.
        Looper.prepareMainLooper();
        mUiAutomation = new UiAutomation(mHandlerThread.getLooper(),
                new UiAutomationConnection());
        mUiAutomation.connect();