diff options
| author | 2024-11-12 02:04:05 +0000 | |
|---|---|---|
| committer | 2024-12-06 00:11:06 +0000 | |
| commit | 479d804c0a1102a8bd0a1097f9176415a346030a (patch) | |
| tree | 797313cd95a656bf0f879f5fccaf0446dd047192 | |
| parent | 72061cd007bf3abcaae3fcf047390109acb96bf4 (diff) | |
Removes FlaggedApi for ACCESSIBILITY_MOTION_EVENT_OBSERVING
This flag annotation is referencing the wrong string;
the real flag android.view.accessibility.motion_event_observing
is already rolled out.
Bug: 378545161
Flag: android.view.accessibility.motion_event_observing
Test: n/a
Change-Id: Ic563c048674712105697b264f8e5e8375bd3fc8b
| -rw-r--r-- | core/api/test-current.txt | 2 | ||||
| -rw-r--r-- | core/api/test-lint-baseline.txt | 2 | ||||
| -rw-r--r-- | core/res/AndroidManifest.xml | 7 |
3 files changed, 6 insertions, 5 deletions
diff --git a/core/api/test-current.txt b/core/api/test-current.txt index 3a62ac9e3c62..363ce4fc1d7e 100644 --- a/core/api/test-current.txt +++ b/core/api/test-current.txt @@ -2,7 +2,7 @@ package android { public static final class Manifest.permission { - field @FlaggedApi("com.android.server.accessibility.motion_event_observing") public static final String ACCESSIBILITY_MOTION_EVENT_OBSERVING = "android.permission.ACCESSIBILITY_MOTION_EVENT_OBSERVING"; + field public static final String ACCESSIBILITY_MOTION_EVENT_OBSERVING = "android.permission.ACCESSIBILITY_MOTION_EVENT_OBSERVING"; field public static final String ACCESS_NOTIFICATIONS = "android.permission.ACCESS_NOTIFICATIONS"; field public static final String ACTIVITY_EMBEDDING = "android.permission.ACTIVITY_EMBEDDING"; field public static final String ADJUST_RUNTIME_PERMISSIONS_POLICY = "android.permission.ADJUST_RUNTIME_PERMISSIONS_POLICY"; diff --git a/core/api/test-lint-baseline.txt b/core/api/test-lint-baseline.txt index 9140bdf4fba7..dd3b6715c313 100644 --- a/core/api/test-lint-baseline.txt +++ b/core/api/test-lint-baseline.txt @@ -1983,6 +1983,8 @@ Todo: android.window.WindowContainerTransaction#setActivityWindowingMode(android Documentation mentions 'TODO' +UnflaggedApi: android.Manifest.permission#ACCESSIBILITY_MOTION_EVENT_OBSERVING: + New API must be flagged with @FlaggedApi: field android.Manifest.permission.ACCESSIBILITY_MOTION_EVENT_OBSERVING UnflaggedApi: android.Manifest.permission#MANAGE_REMOTE_AUTH: New API must be flagged with @FlaggedApi: field android.Manifest.permission.MANAGE_REMOTE_AUTH UnflaggedApi: android.Manifest.permission#RESERVED_FOR_TESTING_SIGNATURE: diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index e2f3d2a32d0b..fc0c99b13eea 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -5362,10 +5362,9 @@ <permission android:name="android.permission.CHANGE_ACCESSIBILITY_VOLUME" android:protectionLevel="signature" /> - <!-- @FlaggedApi("com.android.server.accessibility.motion_event_observing") - @hide - @TestApi - Allows an accessibility service to observe motion events without consuming them. --> + <!-- @TestApi Allows an accessibility service to observe motion events + without consuming them. + @hide --> <permission android:name="android.permission.ACCESSIBILITY_MOTION_EVENT_OBSERVING" android:protectionLevel="signature" /> |