Merge "Check if launcher has touch interaction service when registering touch events" into tm-dev

This commit is contained in:
Abhilasha Chahal
2022-05-06 21:58:36 +00:00
committed by Android (Google) Code Review
4 changed files with 22 additions and 4 deletions

View File

@@ -66,6 +66,12 @@ public class QuickstepTestInformationHandler extends TestInformationHandler {
mDeviceProfile.overviewPageSpacing);
return response;
}
case TestProtocol.REQUEST_HAS_TIS: {
response.putBoolean(
TestProtocol.REQUEST_HAS_TIS, true);
return response;
}
}
return super.call(method, arg, extras);