Merge "Fix Javadoc typo"

This commit is contained in:
Thiébaud Weksteen
2021-06-04 07:14:04 +00:00
committed by Gerrit Code Review

View File

@@ -100,14 +100,14 @@ import java.util.function.Consumer;
* An accessibility is declared as any other service in an AndroidManifest.xml, but it * An accessibility is declared as any other service in an AndroidManifest.xml, but it
* must do two things: * must do two things:
* <ul> * <ul>
* <ol> * <li>
* Specify that it handles the "android.accessibilityservice.AccessibilityService" * Specify that it handles the "android.accessibilityservice.AccessibilityService"
* {@link android.content.Intent}. * {@link android.content.Intent}.
* </ol> * </li>
* <ol> * <li>
* Request the {@link android.Manifest.permission#BIND_ACCESSIBILITY_SERVICE} permission to * Request the {@link android.Manifest.permission#BIND_ACCESSIBILITY_SERVICE} permission to
* ensure that only the system can bind to it. * ensure that only the system can bind to it.
* </ol> * </li>
* </ul> * </ul>
* If either of these items is missing, the system will ignore the accessibility service. * If either of these items is missing, the system will ignore the accessibility service.
* Following is an example declaration: * Following is an example declaration: