1// Baseline format: 1.0
2AcronymName: android.car.CarVersion.VERSION_CODES:
3    Acronyms should not be capitalized in class names: was `VERSION_CODES`, should this be `VersionCodes`?
4AcronymName: android.car.PlatformVersion.VERSION_CODES:
5    Acronyms should not be capitalized in class names: was `VERSION_CODES`, should this be `VersionCodes`?
6
7
8CallbackInterface: android.car.CarAppFocusManager.OnAppFocusOwnershipCallback:
9    Callbacks must be abstract class instead of interface to enable extension in future API levels: OnAppFocusOwnershipCallback
10CallbackInterface: android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback:
11    Callbacks must be abstract class instead of interface to enable extension in future API levels: CarPropertyEventCallback
12
13
14CompileTimeConstant: android.car.Car#PLATFORM_VERSION_MINOR_INT:
15    All constants must be defined at compile time: android.car.Car#PLATFORM_VERSION_MINOR_INT
16
17
18ConcreteCollection: android.car.hardware.property.CarPropertyManager#getPropertyList(android.util.ArraySet<java.lang.Integer>) parameter #0:
19    Parameter type is concrete collection (`android.util.ArraySet`); must be higher-level interface
20
21
22ExecutorRegistration: android.car.Car#createCar(android.content.Context, android.os.Handler, long, android.car.Car.CarServiceLifecycleListener):
23    Registration methods should have overload that accepts delivery Executor: `createCar`
24ExecutorRegistration: android.car.CarAppFocusManager#abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback):
25    Registration methods should have overload that accepts delivery Executor: `abandonAppFocus`
26ExecutorRegistration: android.car.CarAppFocusManager#addFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener, int):
27    Registration methods should have overload that accepts delivery Executor: `addFocusListener`
28ExecutorRegistration: android.car.CarAppFocusManager#isOwningFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback, int):
29    Registration methods should have overload that accepts delivery Executor: `isOwningFocus`
30ExecutorRegistration: android.car.CarAppFocusManager#requestAppFocus(int, android.car.CarAppFocusManager.OnAppFocusOwnershipCallback):
31    Registration methods should have overload that accepts delivery Executor: `requestAppFocus`
32ExecutorRegistration: android.car.CarOccupantZoneManager#registerOccupantZoneConfigChangeListener(android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener):
33    Registration methods should have overload that accepts delivery Executor: `registerOccupantZoneConfigChangeListener`
34ExecutorRegistration: android.car.drivingstate.CarUxRestrictionsManager#registerListener(android.car.drivingstate.CarUxRestrictionsManager.OnUxRestrictionsChangedListener):
35    Registration methods should have overload that accepts delivery Executor: `registerListener`
36ExecutorRegistration: android.car.hardware.CarSensorManager#registerListener(android.car.hardware.CarSensorManager.OnSensorChangedListener, int, int):
37    Registration methods should have overload that accepts delivery Executor: `registerListener`
38ExecutorRegistration: android.car.hardware.property.CarPropertyManager#registerCallback(android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback, int, float):
39    Registration methods should have overload that accepts delivery Executor: `registerCallback`
40ExecutorRegistration: android.car.hardware.property.CarPropertyManager#unsubscribePropertyEvents(int, android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback):
41    Registration methods should have overload that accepts delivery Executor: `unsubscribePropertyEvents`
42ExecutorRegistration: android.car.media.CarAudioManager#registerCarVolumeCallback(android.car.media.CarAudioManager.CarVolumeCallback):
43    Registration methods should have overload that accepts delivery Executor: `registerCarVolumeCallback`
44
45
46HiddenSuperclass: android.car.Car:
47    Public class android.car.Car stripped of unavailable superclass com.android.car.internal.ICarBase
48HiddenSuperclass: android.car.CarAppFocusManager:
49    Public class android.car.CarAppFocusManager stripped of unavailable superclass android.car.CarManagerBase
50HiddenSuperclass: android.car.CarInfoManager:
51    Public class android.car.CarInfoManager stripped of unavailable superclass android.car.CarManagerBase
52HiddenSuperclass: android.car.CarOccupantZoneManager:
53    Public class android.car.CarOccupantZoneManager stripped of unavailable superclass android.car.CarManagerBase
54HiddenSuperclass: android.car.content.pm.CarPackageManager:
55    Public class android.car.content.pm.CarPackageManager stripped of unavailable superclass android.car.CarManagerBase
56HiddenSuperclass: android.car.drivingstate.CarUxRestrictionsManager:
57    Public class android.car.drivingstate.CarUxRestrictionsManager stripped of unavailable superclass android.car.CarManagerBase
58HiddenSuperclass: android.car.hardware.CarSensorManager:
59    Public class android.car.hardware.CarSensorManager stripped of unavailable superclass android.car.CarManagerBase
60HiddenSuperclass: android.car.hardware.power.CarPowerManager:
61    Public class android.car.hardware.power.CarPowerManager stripped of unavailable superclass android.car.CarManagerBase
62HiddenSuperclass: android.car.hardware.property.CarPropertyManager:
63    Public class android.car.hardware.property.CarPropertyManager stripped of unavailable superclass android.car.CarManagerBase
64HiddenSuperclass: android.car.hardware.property.CarPropertySimulationManager:
65    Public class android.car.hardware.property.CarPropertySimulationManager stripped of unavailable superclass android.car.CarManagerBase
66HiddenSuperclass: android.car.input.CarInputManager:
67    Public class android.car.input.CarInputManager stripped of unavailable superclass android.car.CarManagerBase
68HiddenSuperclass: android.car.media.CarAudioManager:
69    Public class android.car.media.CarAudioManager stripped of unavailable superclass android.car.CarManagerBase
70HiddenSuperclass: android.car.remoteaccess.CarRemoteAccessManager:
71    Public class android.car.remoteaccess.CarRemoteAccessManager stripped of unavailable superclass android.car.CarManagerBase
72HiddenSuperclass: android.car.watchdog.CarWatchdogManager:
73    Public class android.car.watchdog.CarWatchdogManager stripped of unavailable superclass android.car.CarManagerBase
74
75
76IntentName: android.car.Car#CAR_EXTRA_BROWSE_SERVICE_FOR_SESSION:
77    Intent extra constant name must be EXTRA_FOO: CAR_EXTRA_BROWSE_SERVICE_FOR_SESSION
78IntentName: android.car.Car#CAR_INTENT_ACTION_RECEIVER_SERVICE:
79    Intent action constant name must be ACTION_FOO: CAR_INTENT_ACTION_RECEIVER_SERVICE
80
81
82ListenerLast: android.car.CarAppFocusManager#abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback, int) parameter #1:
83    Listeners should always be at end of argument list (method `abandonAppFocus`)
84ListenerLast: android.car.CarAppFocusManager#isOwningFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback, int) parameter #1:
85    Listeners should always be at end of argument list (method `isOwningFocus`)
86
87
88ManagerConstructor: android.car.hardware.property.CarPropertySimulationManager#CarPropertySimulationManager():
89    Managers must always be obtained from Context; no direct constructors
90
91
92MissingGetterMatchingBuilder: android.car.drivingstate.CarUxRestrictions.Builder#setMaxStringLength(int):
93    android.car.drivingstate.CarUxRestrictions does not declare a `getMaxStringLength()` method matching method android.car.drivingstate.CarUxRestrictions.Builder.setMaxStringLength(int)
94
95
96MissingNullability: android.car.Car#createCar(android.content.Context) parameter #0:
97    Missing nullability on parameter `context` in method `createCar`
98MissingNullability: android.car.Car#createCar(android.content.Context, android.os.Handler) parameter #0:
99    Missing nullability on parameter `context` in method `createCar`
100MissingNullability: android.car.Car#getCarManager(String) parameter #0:
101    Missing nullability on parameter `serviceName` in method `getCarManager`
102MissingNullability: android.car.CarAppFocusManager#abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback) parameter #0:
103    Missing nullability on parameter `ownershipCallback` in method `abandonAppFocus`
104MissingNullability: android.car.CarAppFocusManager#abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback, int) parameter #0:
105    Missing nullability on parameter `ownershipCallback` in method `abandonAppFocus`
106MissingNullability: android.car.CarAppFocusManager#addFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener, int) parameter #0:
107    Missing nullability on parameter `listener` in method `addFocusListener`
108MissingNullability: android.car.CarAppFocusManager#isOwningFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback, int) parameter #0:
109    Missing nullability on parameter `callback` in method `isOwningFocus`
110MissingNullability: android.car.CarAppFocusManager#removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener) parameter #0:
111    Missing nullability on parameter `listener` in method `removeFocusListener`
112MissingNullability: android.car.CarAppFocusManager#removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener, int) parameter #0:
113    Missing nullability on parameter `listener` in method `removeFocusListener`
114MissingNullability: android.car.CarAppFocusManager#requestAppFocus(int, android.car.CarAppFocusManager.OnAppFocusOwnershipCallback) parameter #1:
115    Missing nullability on parameter `ownershipCallback` in method `requestAppFocus`
116MissingNullability: android.car.CarInfoManager#getEvConnectorTypes():
117    Missing nullability on method `getEvConnectorTypes` return
118MissingNullability: android.car.CarInfoManager#getFuelTypes():
119    Missing nullability on method `getFuelTypes` return
120MissingNullability: android.car.CarOccupantZoneManager.OccupantZoneInfo#CREATOR:
121    Missing nullability on field `CREATOR` in class `class android.car.CarOccupantZoneManager.OccupantZoneInfo`
122MissingNullability: android.car.CarOccupantZoneManager.OccupantZoneInfo#writeToParcel(android.os.Parcel, int) parameter #0:
123    Missing nullability on parameter `dest` in method `writeToParcel`
124MissingNullability: android.car.VehicleGear#toString(int):
125    Missing nullability on method `toString` return
126MissingNullability: android.car.VehiclePropertyIds#toString(int):
127    Missing nullability on method `toString` return
128MissingNullability: android.car.content.pm.CarPackageManager#isActivityDistractionOptimized(String, String) parameter #0:
129    Missing nullability on parameter `packageName` in method `isActivityDistractionOptimized`
130MissingNullability: android.car.content.pm.CarPackageManager#isActivityDistractionOptimized(String, String) parameter #1:
131    Missing nullability on parameter `className` in method `isActivityDistractionOptimized`
132MissingNullability: android.car.content.pm.CarPackageManager#isServiceDistractionOptimized(String, String) parameter #0:
133    Missing nullability on parameter `packageName` in method `isServiceDistractionOptimized`
134MissingNullability: android.car.content.pm.CarPackageManager#isServiceDistractionOptimized(String, String) parameter #1:
135    Missing nullability on parameter `className` in method `isServiceDistractionOptimized`
136MissingNullability: android.car.drivingstate.CarUxRestrictions#CREATOR:
137    Missing nullability on field `CREATOR` in class `class android.car.drivingstate.CarUxRestrictions`
138MissingNullability: android.car.drivingstate.CarUxRestrictions#CarUxRestrictions(android.car.drivingstate.CarUxRestrictions) parameter #0:
139    Missing nullability on parameter `uxRestrictions` in method `CarUxRestrictions`
140MissingNullability: android.car.drivingstate.CarUxRestrictions#isSameRestrictions(android.car.drivingstate.CarUxRestrictions) parameter #0:
141    Missing nullability on parameter `other` in method `isSameRestrictions`
142MissingNullability: android.car.drivingstate.CarUxRestrictions#writeToParcel(android.os.Parcel, int) parameter #0:
143    Missing nullability on parameter `dest` in method `writeToParcel`
144MissingNullability: android.car.drivingstate.CarUxRestrictions.Builder#build():
145    Missing nullability on method `build` return
146MissingNullability: android.car.drivingstate.CarUxRestrictions.Builder#setMaxContentDepth(int):
147    Missing nullability on method `setMaxContentDepth` return
148MissingNullability: android.car.drivingstate.CarUxRestrictions.Builder#setMaxCumulativeContentItems(int):
149    Missing nullability on method `setMaxCumulativeContentItems` return
150MissingNullability: android.car.drivingstate.CarUxRestrictions.Builder#setMaxStringLength(int):
151    Missing nullability on method `setMaxStringLength` return
152MissingNullability: android.car.drivingstate.CarUxRestrictionsManager.OnUxRestrictionsChangedListener#onUxRestrictionsChanged(android.car.drivingstate.CarUxRestrictions) parameter #0:
153    Missing nullability on parameter `restrictionInfo` in method `onUxRestrictionsChanged`
154MissingNullability: android.car.hardware.CarPropertyConfig#CREATOR:
155    Missing nullability on field `CREATOR` in class `class android.car.hardware.CarPropertyConfig`
156MissingNullability: android.car.hardware.CarPropertyConfig#writeToParcel(android.os.Parcel, int) parameter #0:
157    Missing nullability on parameter `dest` in method `writeToParcel`
158MissingNullability: android.car.hardware.CarPropertyValue#CREATOR:
159    Missing nullability on field `CREATOR` in class `class android.car.hardware.CarPropertyValue`
160MissingNullability: android.car.hardware.CarPropertyValue#writeToParcel(android.os.Parcel, int) parameter #0:
161    Missing nullability on parameter `dest` in method `writeToParcel`
162MissingNullability: android.car.hardware.CarSensorEvent#CREATOR:
163    Missing nullability on field `CREATOR` in class `class android.car.hardware.CarSensorEvent`
164MissingNullability: android.car.hardware.CarSensorEvent#floatValues:
165    Missing nullability on field `floatValues` in class `class android.car.hardware.CarSensorEvent`
166MissingNullability: android.car.hardware.CarSensorEvent#intValues:
167    Missing nullability on field `intValues` in class `class android.car.hardware.CarSensorEvent`
168MissingNullability: android.car.hardware.CarSensorEvent#longValues:
169    Missing nullability on field `longValues` in class `class android.car.hardware.CarSensorEvent`
170MissingNullability: android.car.hardware.CarSensorEvent#writeToParcel(android.os.Parcel, int) parameter #0:
171    Missing nullability on parameter `dest` in method `writeToParcel`
172MissingNullability: android.car.hardware.CarSensorManager.OnSensorChangedListener#onSensorChanged(android.car.hardware.CarSensorEvent) parameter #0:
173    Missing nullability on parameter `event` in method `onSensorChanged`
174MissingNullability: android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback#onChangeEvent(android.car.hardware.CarPropertyValue) parameter #0:
175    Missing nullability on parameter `value` in method `onChangeEvent`
176
177
178MutableBareField: android.car.CarOccupantZoneManager.OccupantZoneInfo#zoneId:
179    Bare field zoneId must be marked final, or moved behind accessors if mutable
180MutableBareField: android.car.hardware.CarSensorEvent#sensorType:
181    Bare field sensorType must be marked final, or moved behind accessors if mutable
182MutableBareField: android.car.hardware.CarSensorEvent#timestamp:
183    Bare field timestamp must be marked final, or moved behind accessors if mutable
184MutableBareField: android.car.hardware.CarSensorEvent.EnvironmentData#temperature:
185    Bare field temperature must be marked final, or moved behind accessors if mutable
186MutableBareField: android.car.hardware.CarSensorEvent.EnvironmentData#timestamp:
187    Bare field timestamp must be marked final, or moved behind accessors if mutable
188
189
190NotCloseable: android.car.Car:
191    Classes that release resources (disconnect()) should implement AutoClosable and CloseGuard: class android.car.Car
192
193
194NullableCollection: android.car.hardware.property.CarPropertyManager#getSupportedValuesList(int, int):
195    Return type of method android.car.hardware.property.CarPropertyManager.getSupportedValuesList(int,int) uses a nullable collection (`java.util.List`); must be non-null
196
197
198ProtectedMember: android.car.hardware.property.CarPropertySimulationManager#onCarDisconnected():
199    Protected methods not allowed; must be public: method android.car.hardware.property.CarPropertySimulationManager.onCarDisconnected()}
200
201
202PublicTypedef: android.car.drivingstate.CarUxRestrictions.CarUxRestrictionsInfo:
203    Don't expose @IntDef: CarUxRestrictionsInfo must be hidden.
204PublicTypedef: android.car.hardware.CarPropertyValue.PropertyStatus:
205    Don't expose @IntDef: PropertyStatus must be hidden.
206
207
208RegistrationName: android.car.CarOccupantZoneManager#registerOccupantZoneConfigChangeListener(android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener):
209    Listener methods should be named add/remove; was registerOccupantZoneConfigChangeListener
210RegistrationName: android.car.CarOccupantZoneManager#unregisterOccupantZoneConfigChangeListener(android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener):
211    Listener methods should be named add/remove; was unregisterOccupantZoneConfigChangeListener
212RegistrationName: android.car.drivingstate.CarUxRestrictionsManager#registerListener(android.car.drivingstate.CarUxRestrictionsManager.OnUxRestrictionsChangedListener):
213    Listener methods should be named add/remove; was registerListener
214RegistrationName: android.car.drivingstate.CarUxRestrictionsManager#unregisterListener():
215    Listener methods should be named add/remove; was unregisterListener
216RegistrationName: android.car.hardware.CarSensorManager#registerListener(android.car.hardware.CarSensorManager.OnSensorChangedListener, int, int):
217    Listener methods should be named add/remove; was registerListener
218RegistrationName: android.car.hardware.CarSensorManager#unregisterListener(android.car.hardware.CarSensorManager.OnSensorChangedListener):
219    Listener methods should be named add/remove; was unregisterListener
220RegistrationName: android.car.hardware.CarSensorManager#unregisterListener(android.car.hardware.CarSensorManager.OnSensorChangedListener, int):
221    Listener methods should be named add/remove; was unregisterListener
222
223
224SamShouldBeLast: android.car.CarAppFocusManager#addFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener, int):
225    SAM-compatible parameters (such as parameter 1, "listener", in android.car.CarAppFocusManager.addFocusListener) should be last to improve Kotlin interoperability; see https://kotlinlang.org/docs/reference/java-interop.html#sam-conversions
226SamShouldBeLast: android.car.CarAppFocusManager#removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener, int):
227    SAM-compatible parameters (such as parameter 1, "listener", in android.car.CarAppFocusManager.removeFocusListener) should be last to improve Kotlin interoperability; see https://kotlinlang.org/docs/reference/java-interop.html#sam-conversions
228SamShouldBeLast: android.car.hardware.CarSensorManager#registerListener(android.car.hardware.CarSensorManager.OnSensorChangedListener, int, int):
229    SAM-compatible parameters (such as parameter 1, "listener", in android.car.hardware.CarSensorManager.registerListener) should be last to improve Kotlin interoperability; see https://kotlinlang.org/docs/reference/java-interop.html#sam-conversions
230SamShouldBeLast: android.car.hardware.CarSensorManager#unregisterListener(android.car.hardware.CarSensorManager.OnSensorChangedListener, int):
231    SAM-compatible parameters (such as parameter 1, "listener", in android.car.hardware.CarSensorManager.unregisterListener) should be last to improve Kotlin interoperability; see https://kotlinlang.org/docs/reference/java-interop.html#sam-conversions
232
233
234StaticFinalBuilder: android.car.drivingstate.CarUxRestrictions.Builder:
235    Builder must be final: android.car.drivingstate.CarUxRestrictions.Builder
236
237
238StaticUtils: android.car.VehiclePropertyIds:
239    Fully-static utility classes must not have constructor
240
241
242Todo: android.car.VehiclePropertyIds#AP_POWER_BOOTUP_REASON:
243    Documentation mentions 'TODO'
244Todo: android.car.VehiclePropertyIds#AP_POWER_STATE_REPORT:
245    Documentation mentions 'TODO'
246Todo: android.car.VehiclePropertyIds#AP_POWER_STATE_REQ:
247    Documentation mentions 'TODO'
248Todo: android.car.VehiclePropertyIds#DISPLAY_BRIGHTNESS:
249    Documentation mentions 'TODO'
250Todo: android.car.VehiclePropertyIds#HW_KEY_INPUT:
251    Documentation mentions 'TODO'
252Todo: android.car.VehiclePropertyIds#OBD2_FREEZE_FRAME:
253    Documentation mentions 'TODO'
254Todo: android.car.VehiclePropertyIds#OBD2_FREEZE_FRAME_CLEAR:
255    Documentation mentions 'TODO'
256Todo: android.car.VehiclePropertyIds#OBD2_FREEZE_FRAME_INFO:
257    Documentation mentions 'TODO'
258Todo: android.car.VehiclePropertyIds#OBD2_LIVE_FRAME:
259    Documentation mentions 'TODO'
260Todo: android.car.VehiclePropertyIds#PER_DISPLAY_BRIGHTNESS:
261    Documentation mentions 'TODO'
262Todo: android.car.VehiclePropertyIds#SEAT_HEADREST_HEIGHT_POS:
263    Documentation mentions 'TODO'
264Todo: android.car.VehiclePropertyIds#VEHICLE_MAP_SERVICE:
265    Documentation mentions 'TODO'
266
267
268UnflaggedApi: android.car.ApiVersion:
269    New API must be flagged with @FlaggedApi: class android.car.ApiVersion
270UnflaggedApi: android.car.ApiVersion#getMajorVersion():
271    New API must be flagged with @FlaggedApi: method android.car.ApiVersion.getMajorVersion()
272UnflaggedApi: android.car.ApiVersion#getMinorVersion():
273    New API must be flagged with @FlaggedApi: method android.car.ApiVersion.getMinorVersion()
274UnflaggedApi: android.car.ApiVersion#isAtLeast(T):
275    New API must be flagged with @FlaggedApi: method android.car.ApiVersion.isAtLeast(T)
276UnflaggedApi: android.car.ApiVersion#toString():
277    New API must be flagged with @FlaggedApi: method android.car.ApiVersion.toString()
278UnflaggedApi: android.car.Car:
279    New API must be flagged with @FlaggedApi: class android.car.Car
280UnflaggedApi: android.car.Car#APP_FOCUS_SERVICE:
281    New API must be flagged with @FlaggedApi: field android.car.Car.APP_FOCUS_SERVICE
282UnflaggedApi: android.car.Car#AUDIO_SERVICE:
283    New API must be flagged with @FlaggedApi: field android.car.Car.AUDIO_SERVICE
284UnflaggedApi: android.car.Car#CAR_EXTRA_BROWSE_SERVICE_FOR_SESSION:
285    New API must be flagged with @FlaggedApi: field android.car.Car.CAR_EXTRA_BROWSE_SERVICE_FOR_SESSION
286UnflaggedApi: android.car.Car#CAR_NAVIGATION_SERVICE:
287    New API must be flagged with @FlaggedApi: field android.car.Car.CAR_NAVIGATION_SERVICE
288UnflaggedApi: android.car.Car#CAR_OCCUPANT_ZONE_SERVICE:
289    New API must be flagged with @FlaggedApi: field android.car.Car.CAR_OCCUPANT_ZONE_SERVICE
290UnflaggedApi: android.car.Car#CAR_UX_RESTRICTION_SERVICE:
291    New API must be flagged with @FlaggedApi: field android.car.Car.CAR_UX_RESTRICTION_SERVICE
292UnflaggedApi: android.car.Car#CAR_WAIT_TIMEOUT_DO_NOT_WAIT:
293    New API must be flagged with @FlaggedApi: field android.car.Car.CAR_WAIT_TIMEOUT_DO_NOT_WAIT
294UnflaggedApi: android.car.Car#CAR_WAIT_TIMEOUT_WAIT_FOREVER:
295    New API must be flagged with @FlaggedApi: field android.car.Car.CAR_WAIT_TIMEOUT_WAIT_FOREVER
296UnflaggedApi: android.car.Car#CAR_WATCHDOG_SERVICE:
297    New API must be flagged with @FlaggedApi: field android.car.Car.CAR_WATCHDOG_SERVICE
298UnflaggedApi: android.car.Car#INFO_SERVICE:
299    New API must be flagged with @FlaggedApi: field android.car.Car.INFO_SERVICE
300UnflaggedApi: android.car.Car#META_DATA_DISTRACTION_OPTIMIZED:
301    New API must be flagged with @FlaggedApi: field android.car.Car.META_DATA_DISTRACTION_OPTIMIZED
302UnflaggedApi: android.car.Car#META_DATA_REQUIRES_CAR_FEATURE:
303    New API must be flagged with @FlaggedApi: field android.car.Car.META_DATA_REQUIRES_CAR_FEATURE
304UnflaggedApi: android.car.Car#PACKAGE_SERVICE:
305    New API must be flagged with @FlaggedApi: field android.car.Car.PACKAGE_SERVICE
306UnflaggedApi: android.car.Car#PERMISSION_CAR_CONTROL_AUDIO_SETTINGS:
307    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_CAR_CONTROL_AUDIO_SETTINGS
308UnflaggedApi: android.car.Car#PERMISSION_CAR_CONTROL_AUDIO_VOLUME:
309    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_CAR_CONTROL_AUDIO_VOLUME
310UnflaggedApi: android.car.Car#PERMISSION_CAR_INFO:
311    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_CAR_INFO
312UnflaggedApi: android.car.Car#PERMISSION_CAR_NAVIGATION_MANAGER:
313    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_CAR_NAVIGATION_MANAGER
314UnflaggedApi: android.car.Car#PERMISSION_CONTROL_CAR_ENERGY:
315    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_CONTROL_CAR_ENERGY
316UnflaggedApi: android.car.Car#PERMISSION_CONTROL_DISPLAY_UNITS:
317    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_CONTROL_DISPLAY_UNITS
318UnflaggedApi: android.car.Car#PERMISSION_CONTROL_INTERIOR_LIGHTS:
319    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_CONTROL_INTERIOR_LIGHTS
320UnflaggedApi: android.car.Car#PERMISSION_ENERGY:
321    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_ENERGY
322UnflaggedApi: android.car.Car#PERMISSION_ENERGY_PORTS:
323    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_ENERGY_PORTS
324UnflaggedApi: android.car.Car#PERMISSION_EXTERIOR_ENVIRONMENT:
325    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_EXTERIOR_ENVIRONMENT
326UnflaggedApi: android.car.Car#PERMISSION_IDENTIFICATION:
327    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_IDENTIFICATION
328UnflaggedApi: android.car.Car#PERMISSION_POWERTRAIN:
329    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_POWERTRAIN
330UnflaggedApi: android.car.Car#PERMISSION_PRIVILEGED_CAR_INFO:
331    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_PRIVILEGED_CAR_INFO
332UnflaggedApi: android.car.Car#PERMISSION_READ_CAR_POWER_POLICY:
333    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_READ_CAR_POWER_POLICY
334UnflaggedApi: android.car.Car#PERMISSION_READ_DISPLAY_UNITS:
335    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_READ_DISPLAY_UNITS
336UnflaggedApi: android.car.Car#PERMISSION_READ_INTERIOR_LIGHTS:
337    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_READ_INTERIOR_LIGHTS
338UnflaggedApi: android.car.Car#PERMISSION_READ_STEERING_STATE:
339    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_READ_STEERING_STATE
340UnflaggedApi: android.car.Car#PERMISSION_SPEED:
341    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_SPEED
342UnflaggedApi: android.car.Car#PERMISSION_USE_REMOTE_ACCESS:
343    New API must be flagged with @FlaggedApi: field android.car.Car.PERMISSION_USE_REMOTE_ACCESS
344UnflaggedApi: android.car.Car#POWER_SERVICE:
345    New API must be flagged with @FlaggedApi: field android.car.Car.POWER_SERVICE
346UnflaggedApi: android.car.Car#PROPERTY_SERVICE:
347    New API must be flagged with @FlaggedApi: field android.car.Car.PROPERTY_SERVICE
348UnflaggedApi: android.car.Car#createCar(android.content.Context):
349    New API must be flagged with @FlaggedApi: method android.car.Car.createCar(android.content.Context)
350UnflaggedApi: android.car.Car#createCar(android.content.Context, android.os.Handler):
351    New API must be flagged with @FlaggedApi: method android.car.Car.createCar(android.content.Context,android.os.Handler)
352UnflaggedApi: android.car.Car#createCar(android.content.Context, android.os.Handler, long, android.car.Car.CarServiceLifecycleListener):
353    New API must be flagged with @FlaggedApi: method android.car.Car.createCar(android.content.Context,android.os.Handler,long,android.car.Car.CarServiceLifecycleListener)
354UnflaggedApi: android.car.Car#disconnect():
355    New API must be flagged with @FlaggedApi: method android.car.Car.disconnect()
356UnflaggedApi: android.car.Car#getCarManager(Class<T>):
357    New API must be flagged with @FlaggedApi: method android.car.Car.getCarManager(Class<T>)
358UnflaggedApi: android.car.Car#getCarManager(String):
359    New API must be flagged with @FlaggedApi: method android.car.Car.getCarManager(String)
360UnflaggedApi: android.car.Car#isConnected():
361    New API must be flagged with @FlaggedApi: method android.car.Car.isConnected()
362UnflaggedApi: android.car.Car#isConnecting():
363    New API must be flagged with @FlaggedApi: method android.car.Car.isConnecting()
364UnflaggedApi: android.car.Car#isFeatureEnabled(String):
365    New API must be flagged with @FlaggedApi: method android.car.Car.isFeatureEnabled(String)
366UnflaggedApi: android.car.Car.CarServiceLifecycleListener:
367    New API must be flagged with @FlaggedApi: class android.car.Car.CarServiceLifecycleListener
368UnflaggedApi: android.car.Car.CarServiceLifecycleListener#onLifecycleChanged(android.car.Car, boolean):
369    New API must be flagged with @FlaggedApi: method android.car.Car.CarServiceLifecycleListener.onLifecycleChanged(android.car.Car,boolean)
370UnflaggedApi: android.car.CarAppFocusManager:
371    New API must be flagged with @FlaggedApi: class android.car.CarAppFocusManager
372UnflaggedApi: android.car.CarAppFocusManager#APP_FOCUS_REQUEST_FAILED:
373    New API must be flagged with @FlaggedApi: field android.car.CarAppFocusManager.APP_FOCUS_REQUEST_FAILED
374UnflaggedApi: android.car.CarAppFocusManager#APP_FOCUS_REQUEST_SUCCEEDED:
375    New API must be flagged with @FlaggedApi: field android.car.CarAppFocusManager.APP_FOCUS_REQUEST_SUCCEEDED
376UnflaggedApi: android.car.CarAppFocusManager#APP_FOCUS_TYPE_NAVIGATION:
377    New API must be flagged with @FlaggedApi: field android.car.CarAppFocusManager.APP_FOCUS_TYPE_NAVIGATION
378UnflaggedApi: android.car.CarAppFocusManager#abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback):
379    New API must be flagged with @FlaggedApi: method android.car.CarAppFocusManager.abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback)
380UnflaggedApi: android.car.CarAppFocusManager#abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback, int):
381    New API must be flagged with @FlaggedApi: method android.car.CarAppFocusManager.abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback,int)
382UnflaggedApi: android.car.CarAppFocusManager#addFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener, int):
383    New API must be flagged with @FlaggedApi: method android.car.CarAppFocusManager.addFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener,int)
384UnflaggedApi: android.car.CarAppFocusManager#isOwningFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback, int):
385    New API must be flagged with @FlaggedApi: method android.car.CarAppFocusManager.isOwningFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback,int)
386UnflaggedApi: android.car.CarAppFocusManager#removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener):
387    New API must be flagged with @FlaggedApi: method android.car.CarAppFocusManager.removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener)
388UnflaggedApi: android.car.CarAppFocusManager#removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener, int):
389    New API must be flagged with @FlaggedApi: method android.car.CarAppFocusManager.removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener,int)
390UnflaggedApi: android.car.CarAppFocusManager#requestAppFocus(int, android.car.CarAppFocusManager.OnAppFocusOwnershipCallback):
391    New API must be flagged with @FlaggedApi: method android.car.CarAppFocusManager.requestAppFocus(int,android.car.CarAppFocusManager.OnAppFocusOwnershipCallback)
392UnflaggedApi: android.car.CarAppFocusManager.OnAppFocusChangedListener:
393    New API must be flagged with @FlaggedApi: class android.car.CarAppFocusManager.OnAppFocusChangedListener
394UnflaggedApi: android.car.CarAppFocusManager.OnAppFocusChangedListener#onAppFocusChanged(int, boolean):
395    New API must be flagged with @FlaggedApi: method android.car.CarAppFocusManager.OnAppFocusChangedListener.onAppFocusChanged(int,boolean)
396UnflaggedApi: android.car.CarAppFocusManager.OnAppFocusOwnershipCallback:
397    New API must be flagged with @FlaggedApi: class android.car.CarAppFocusManager.OnAppFocusOwnershipCallback
398UnflaggedApi: android.car.CarAppFocusManager.OnAppFocusOwnershipCallback#onAppFocusOwnershipGranted(int):
399    New API must be flagged with @FlaggedApi: method android.car.CarAppFocusManager.OnAppFocusOwnershipCallback.onAppFocusOwnershipGranted(int)
400UnflaggedApi: android.car.CarAppFocusManager.OnAppFocusOwnershipCallback#onAppFocusOwnershipLost(int):
401    New API must be flagged with @FlaggedApi: method android.car.CarAppFocusManager.OnAppFocusOwnershipCallback.onAppFocusOwnershipLost(int)
402UnflaggedApi: android.car.CarInfoManager#getDriverSeat():
403    New API must be flagged with @FlaggedApi: method android.car.CarInfoManager.getDriverSeat()
404UnflaggedApi: android.car.CarInfoManager#getEvBatteryCapacity():
405    New API must be flagged with @FlaggedApi: method android.car.CarInfoManager.getEvBatteryCapacity()
406UnflaggedApi: android.car.CarInfoManager#getEvConnectorTypes():
407    New API must be flagged with @FlaggedApi: method android.car.CarInfoManager.getEvConnectorTypes()
408UnflaggedApi: android.car.CarInfoManager#getEvPortLocation():
409    New API must be flagged with @FlaggedApi: method android.car.CarInfoManager.getEvPortLocation()
410UnflaggedApi: android.car.CarInfoManager#getFuelCapacity():
411    New API must be flagged with @FlaggedApi: method android.car.CarInfoManager.getFuelCapacity()
412UnflaggedApi: android.car.CarInfoManager#getFuelDoorLocation():
413    New API must be flagged with @FlaggedApi: method android.car.CarInfoManager.getFuelDoorLocation()
414UnflaggedApi: android.car.CarInfoManager#getFuelTypes():
415    New API must be flagged with @FlaggedApi: method android.car.CarInfoManager.getFuelTypes()
416UnflaggedApi: android.car.CarInfoManager#getManufacturer():
417    New API must be flagged with @FlaggedApi: method android.car.CarInfoManager.getManufacturer()
418UnflaggedApi: android.car.CarInfoManager#getModel():
419    New API must be flagged with @FlaggedApi: method android.car.CarInfoManager.getModel()
420UnflaggedApi: android.car.CarInfoManager#getModelYearInInteger():
421    New API must be flagged with @FlaggedApi: method android.car.CarInfoManager.getModelYearInInteger()
422UnflaggedApi: android.car.CarOccupantZoneManager:
423    New API must be flagged with @FlaggedApi: class android.car.CarOccupantZoneManager
424UnflaggedApi: android.car.CarOccupantZoneManager#DISPLAY_TYPE_AUXILIARY:
425    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.DISPLAY_TYPE_AUXILIARY
426UnflaggedApi: android.car.CarOccupantZoneManager#DISPLAY_TYPE_HUD:
427    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.DISPLAY_TYPE_HUD
428UnflaggedApi: android.car.CarOccupantZoneManager#DISPLAY_TYPE_INPUT:
429    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.DISPLAY_TYPE_INPUT
430UnflaggedApi: android.car.CarOccupantZoneManager#DISPLAY_TYPE_INSTRUMENT_CLUSTER:
431    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.DISPLAY_TYPE_INSTRUMENT_CLUSTER
432UnflaggedApi: android.car.CarOccupantZoneManager#DISPLAY_TYPE_MAIN:
433    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.DISPLAY_TYPE_MAIN
434UnflaggedApi: android.car.CarOccupantZoneManager#DISPLAY_TYPE_UNKNOWN:
435    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.DISPLAY_TYPE_UNKNOWN
436UnflaggedApi: android.car.CarOccupantZoneManager#INVALID_USER_ID:
437    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.INVALID_USER_ID
438UnflaggedApi: android.car.CarOccupantZoneManager#OCCUPANT_TYPE_DRIVER:
439    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.OCCUPANT_TYPE_DRIVER
440UnflaggedApi: android.car.CarOccupantZoneManager#OCCUPANT_TYPE_FRONT_PASSENGER:
441    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.OCCUPANT_TYPE_FRONT_PASSENGER
442UnflaggedApi: android.car.CarOccupantZoneManager#OCCUPANT_TYPE_REAR_PASSENGER:
443    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.OCCUPANT_TYPE_REAR_PASSENGER
444UnflaggedApi: android.car.CarOccupantZoneManager#ZONE_CONFIG_CHANGE_FLAG_AUDIO:
445    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.ZONE_CONFIG_CHANGE_FLAG_AUDIO
446UnflaggedApi: android.car.CarOccupantZoneManager#ZONE_CONFIG_CHANGE_FLAG_DISPLAY:
447    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.ZONE_CONFIG_CHANGE_FLAG_DISPLAY
448UnflaggedApi: android.car.CarOccupantZoneManager#ZONE_CONFIG_CHANGE_FLAG_USER:
449    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.ZONE_CONFIG_CHANGE_FLAG_USER
450UnflaggedApi: android.car.CarOccupantZoneManager#getAllDisplaysForOccupant(android.car.CarOccupantZoneManager.OccupantZoneInfo):
451    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.getAllDisplaysForOccupant(android.car.CarOccupantZoneManager.OccupantZoneInfo)
452UnflaggedApi: android.car.CarOccupantZoneManager#getAllOccupantZones():
453    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.getAllOccupantZones()
454UnflaggedApi: android.car.CarOccupantZoneManager#getDisplayForOccupant(android.car.CarOccupantZoneManager.OccupantZoneInfo, int):
455    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.getDisplayForOccupant(android.car.CarOccupantZoneManager.OccupantZoneInfo,int)
456UnflaggedApi: android.car.CarOccupantZoneManager#getDisplayType(android.view.Display):
457    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.getDisplayType(android.view.Display)
458UnflaggedApi: android.car.CarOccupantZoneManager#getMyOccupantZone():
459    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.getMyOccupantZone()
460UnflaggedApi: android.car.CarOccupantZoneManager#getOccupantZone(int, int):
461    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.getOccupantZone(int,int)
462UnflaggedApi: android.car.CarOccupantZoneManager#getOccupantZoneForUser(android.os.UserHandle):
463    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.getOccupantZoneForUser(android.os.UserHandle)
464UnflaggedApi: android.car.CarOccupantZoneManager#getSupportedInputTypes(android.car.CarOccupantZoneManager.OccupantZoneInfo, int):
465    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.getSupportedInputTypes(android.car.CarOccupantZoneManager.OccupantZoneInfo,int)
466UnflaggedApi: android.car.CarOccupantZoneManager#getUserForDisplayId(int):
467    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.getUserForDisplayId(int)
468UnflaggedApi: android.car.CarOccupantZoneManager#getUserForOccupant(android.car.CarOccupantZoneManager.OccupantZoneInfo):
469    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.getUserForOccupant(android.car.CarOccupantZoneManager.OccupantZoneInfo)
470UnflaggedApi: android.car.CarOccupantZoneManager#hasDriverZone():
471    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.hasDriverZone()
472UnflaggedApi: android.car.CarOccupantZoneManager#hasPassengerZones():
473    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.hasPassengerZones()
474UnflaggedApi: android.car.CarOccupantZoneManager#registerOccupantZoneConfigChangeListener(android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener):
475    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.registerOccupantZoneConfigChangeListener(android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener)
476UnflaggedApi: android.car.CarOccupantZoneManager#unregisterOccupantZoneConfigChangeListener(android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener):
477    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.unregisterOccupantZoneConfigChangeListener(android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener)
478UnflaggedApi: android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener:
479    New API must be flagged with @FlaggedApi: class android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener
480UnflaggedApi: android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener#onOccupantZoneConfigChanged(int):
481    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.OccupantZoneConfigChangeListener.onOccupantZoneConfigChanged(int)
482UnflaggedApi: android.car.CarOccupantZoneManager.OccupantZoneInfo:
483    New API must be flagged with @FlaggedApi: class android.car.CarOccupantZoneManager.OccupantZoneInfo
484UnflaggedApi: android.car.CarOccupantZoneManager.OccupantZoneInfo#CREATOR:
485    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.OccupantZoneInfo.CREATOR
486UnflaggedApi: android.car.CarOccupantZoneManager.OccupantZoneInfo#describeContents():
487    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.OccupantZoneInfo.describeContents()
488UnflaggedApi: android.car.CarOccupantZoneManager.OccupantZoneInfo#occupantType:
489    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.OccupantZoneInfo.occupantType
490UnflaggedApi: android.car.CarOccupantZoneManager.OccupantZoneInfo#seat:
491    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.OccupantZoneInfo.seat
492UnflaggedApi: android.car.CarOccupantZoneManager.OccupantZoneInfo#writeToParcel(android.os.Parcel, int):
493    New API must be flagged with @FlaggedApi: method android.car.CarOccupantZoneManager.OccupantZoneInfo.writeToParcel(android.os.Parcel,int)
494UnflaggedApi: android.car.CarOccupantZoneManager.OccupantZoneInfo#zoneId:
495    New API must be flagged with @FlaggedApi: field android.car.CarOccupantZoneManager.OccupantZoneInfo.zoneId
496UnflaggedApi: android.car.CarVersion:
497    New API must be flagged with @FlaggedApi: class android.car.CarVersion
498UnflaggedApi: android.car.CarVersion#CREATOR:
499    New API must be flagged with @FlaggedApi: field android.car.CarVersion.CREATOR
500UnflaggedApi: android.car.CarVersion#describeContents():
501    New API must be flagged with @FlaggedApi: method android.car.CarVersion.describeContents()
502UnflaggedApi: android.car.CarVersion#forMajorAndMinorVersions(int, int):
503    New API must be flagged with @FlaggedApi: method android.car.CarVersion.forMajorAndMinorVersions(int,int)
504UnflaggedApi: android.car.CarVersion#forMajorVersion(int):
505    New API must be flagged with @FlaggedApi: method android.car.CarVersion.forMajorVersion(int)
506UnflaggedApi: android.car.CarVersion#writeToParcel(android.os.Parcel, int):
507    New API must be flagged with @FlaggedApi: method android.car.CarVersion.writeToParcel(android.os.Parcel,int)
508UnflaggedApi: android.car.CarVersion.VERSION_CODES:
509    New API must be flagged with @FlaggedApi: class android.car.CarVersion.VERSION_CODES
510UnflaggedApi: android.car.CarVersion.VERSION_CODES#TIRAMISU_0:
511    New API must be flagged with @FlaggedApi: field android.car.CarVersion.VERSION_CODES.TIRAMISU_0
512UnflaggedApi: android.car.CarVersion.VERSION_CODES#TIRAMISU_1:
513    New API must be flagged with @FlaggedApi: field android.car.CarVersion.VERSION_CODES.TIRAMISU_1
514UnflaggedApi: android.car.CarVersion.VERSION_CODES#TIRAMISU_2:
515    New API must be flagged with @FlaggedApi: field android.car.CarVersion.VERSION_CODES.TIRAMISU_2
516UnflaggedApi: android.car.CarVersion.VERSION_CODES#TIRAMISU_3:
517    New API must be flagged with @FlaggedApi: field android.car.CarVersion.VERSION_CODES.TIRAMISU_3
518UnflaggedApi: android.car.CarVersion.VERSION_CODES#UPSIDE_DOWN_CAKE_0:
519    New API must be flagged with @FlaggedApi: field android.car.CarVersion.VERSION_CODES.UPSIDE_DOWN_CAKE_0
520UnflaggedApi: android.car.CarVersion.VERSION_CODES#UPSIDE_DOWN_CAKE_1:
521    New API must be flagged with @FlaggedApi: field android.car.CarVersion.VERSION_CODES.UPSIDE_DOWN_CAKE_1
522UnflaggedApi: android.car.CarVersion.VERSION_CODES#VANILLA_ICE_CREAM_0:
523    New API must be flagged with @FlaggedApi: field android.car.CarVersion.VERSION_CODES.VANILLA_ICE_CREAM_0
524UnflaggedApi: android.car.EvConnectorType#CHADEMO:
525    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.CHADEMO
526UnflaggedApi: android.car.EvConnectorType#COMBO_1:
527    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.COMBO_1
528UnflaggedApi: android.car.EvConnectorType#COMBO_2:
529    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.COMBO_2
530UnflaggedApi: android.car.EvConnectorType#GBT:
531    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.GBT
532UnflaggedApi: android.car.EvConnectorType#GBT_DC:
533    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.GBT_DC
534UnflaggedApi: android.car.EvConnectorType#J1772:
535    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.J1772
536UnflaggedApi: android.car.EvConnectorType#MENNEKES:
537    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.MENNEKES
538UnflaggedApi: android.car.EvConnectorType#OTHER:
539    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.OTHER
540UnflaggedApi: android.car.EvConnectorType#SCAME:
541    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.SCAME
542UnflaggedApi: android.car.EvConnectorType#TESLA_HPWC:
543    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.TESLA_HPWC
544UnflaggedApi: android.car.EvConnectorType#TESLA_ROADSTER:
545    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.TESLA_ROADSTER
546UnflaggedApi: android.car.EvConnectorType#TESLA_SUPERCHARGER:
547    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.TESLA_SUPERCHARGER
548UnflaggedApi: android.car.EvConnectorType#UNKNOWN:
549    New API must be flagged with @FlaggedApi: field android.car.EvConnectorType.UNKNOWN
550UnflaggedApi: android.car.FuelType:
551    New API must be flagged with @FlaggedApi: class android.car.FuelType
552UnflaggedApi: android.car.FuelType#BIODIESEL:
553    New API must be flagged with @FlaggedApi: field android.car.FuelType.BIODIESEL
554UnflaggedApi: android.car.FuelType#CNG:
555    New API must be flagged with @FlaggedApi: field android.car.FuelType.CNG
556UnflaggedApi: android.car.FuelType#DIESEL_1:
557    New API must be flagged with @FlaggedApi: field android.car.FuelType.DIESEL_1
558UnflaggedApi: android.car.FuelType#DIESEL_2:
559    New API must be flagged with @FlaggedApi: field android.car.FuelType.DIESEL_2
560UnflaggedApi: android.car.FuelType#E85:
561    New API must be flagged with @FlaggedApi: field android.car.FuelType.E85
562UnflaggedApi: android.car.FuelType#ELECTRIC:
563    New API must be flagged with @FlaggedApi: field android.car.FuelType.ELECTRIC
564UnflaggedApi: android.car.FuelType#HYDROGEN:
565    New API must be flagged with @FlaggedApi: field android.car.FuelType.HYDROGEN
566UnflaggedApi: android.car.FuelType#LEADED:
567    New API must be flagged with @FlaggedApi: field android.car.FuelType.LEADED
568UnflaggedApi: android.car.FuelType#LNG:
569    New API must be flagged with @FlaggedApi: field android.car.FuelType.LNG
570UnflaggedApi: android.car.FuelType#LPG:
571    New API must be flagged with @FlaggedApi: field android.car.FuelType.LPG
572UnflaggedApi: android.car.FuelType#OTHER:
573    New API must be flagged with @FlaggedApi: field android.car.FuelType.OTHER
574UnflaggedApi: android.car.FuelType#UNKNOWN:
575    New API must be flagged with @FlaggedApi: field android.car.FuelType.UNKNOWN
576UnflaggedApi: android.car.FuelType#UNLEADED:
577    New API must be flagged with @FlaggedApi: field android.car.FuelType.UNLEADED
578UnflaggedApi: android.car.GsrComplianceType:
579    New API must be flagged with @FlaggedApi: class android.car.GsrComplianceType
580UnflaggedApi: android.car.GsrComplianceType#GSR_COMPLIANCE_TYPE_NOT_REQUIRED:
581    New API must be flagged with @FlaggedApi: field android.car.GsrComplianceType.GSR_COMPLIANCE_TYPE_NOT_REQUIRED
582UnflaggedApi: android.car.GsrComplianceType#GSR_COMPLIANCE_TYPE_REQUIRED_V1:
583    New API must be flagged with @FlaggedApi: field android.car.GsrComplianceType.GSR_COMPLIANCE_TYPE_REQUIRED_V1
584UnflaggedApi: android.car.PlatformVersion:
585    New API must be flagged with @FlaggedApi: class android.car.PlatformVersion
586UnflaggedApi: android.car.PlatformVersion#CREATOR:
587    New API must be flagged with @FlaggedApi: field android.car.PlatformVersion.CREATOR
588UnflaggedApi: android.car.PlatformVersion#describeContents():
589    New API must be flagged with @FlaggedApi: method android.car.PlatformVersion.describeContents()
590UnflaggedApi: android.car.PlatformVersion#forMajorAndMinorVersions(int, int):
591    New API must be flagged with @FlaggedApi: method android.car.PlatformVersion.forMajorAndMinorVersions(int,int)
592UnflaggedApi: android.car.PlatformVersion#forMajorVersion(int):
593    New API must be flagged with @FlaggedApi: method android.car.PlatformVersion.forMajorVersion(int)
594UnflaggedApi: android.car.PlatformVersion#writeToParcel(android.os.Parcel, int):
595    New API must be flagged with @FlaggedApi: method android.car.PlatformVersion.writeToParcel(android.os.Parcel,int)
596UnflaggedApi: android.car.PlatformVersion.VERSION_CODES:
597    New API must be flagged with @FlaggedApi: class android.car.PlatformVersion.VERSION_CODES
598UnflaggedApi: android.car.PlatformVersion.VERSION_CODES#TIRAMISU_0:
599    New API must be flagged with @FlaggedApi: field android.car.PlatformVersion.VERSION_CODES.TIRAMISU_0
600UnflaggedApi: android.car.PlatformVersion.VERSION_CODES#TIRAMISU_1:
601    New API must be flagged with @FlaggedApi: field android.car.PlatformVersion.VERSION_CODES.TIRAMISU_1
602UnflaggedApi: android.car.PlatformVersion.VERSION_CODES#TIRAMISU_2:
603    New API must be flagged with @FlaggedApi: field android.car.PlatformVersion.VERSION_CODES.TIRAMISU_2
604UnflaggedApi: android.car.PlatformVersion.VERSION_CODES#TIRAMISU_3:
605    New API must be flagged with @FlaggedApi: field android.car.PlatformVersion.VERSION_CODES.TIRAMISU_3
606UnflaggedApi: android.car.PlatformVersion.VERSION_CODES#UPSIDE_DOWN_CAKE_0:
607    New API must be flagged with @FlaggedApi: field android.car.PlatformVersion.VERSION_CODES.UPSIDE_DOWN_CAKE_0
608UnflaggedApi: android.car.PlatformVersion.VERSION_CODES#UPSIDE_DOWN_CAKE_1:
609    New API must be flagged with @FlaggedApi: field android.car.PlatformVersion.VERSION_CODES.UPSIDE_DOWN_CAKE_1
610UnflaggedApi: android.car.PlatformVersion.VERSION_CODES#VANILLA_ICE_CREAM_0:
611    New API must be flagged with @FlaggedApi: field android.car.PlatformVersion.VERSION_CODES.VANILLA_ICE_CREAM_0
612UnflaggedApi: android.car.PlatformVersionMismatchException:
613    New API must be flagged with @FlaggedApi: class android.car.PlatformVersionMismatchException
614UnflaggedApi: android.car.PlatformVersionMismatchException#CREATOR:
615    New API must be flagged with @FlaggedApi: field android.car.PlatformVersionMismatchException.CREATOR
616UnflaggedApi: android.car.PlatformVersionMismatchException#PlatformVersionMismatchException(android.car.PlatformVersion):
617    New API must be flagged with @FlaggedApi: constructor android.car.PlatformVersionMismatchException(android.car.PlatformVersion)
618UnflaggedApi: android.car.PlatformVersionMismatchException#describeContents():
619    New API must be flagged with @FlaggedApi: method android.car.PlatformVersionMismatchException.describeContents()
620UnflaggedApi: android.car.PlatformVersionMismatchException#getMinimumPlatformApiVersion():
621    New API must be flagged with @FlaggedApi: method android.car.PlatformVersionMismatchException.getMinimumPlatformApiVersion()
622UnflaggedApi: android.car.PlatformVersionMismatchException#writeToParcel(android.os.Parcel, int):
623    New API must be flagged with @FlaggedApi: method android.car.PlatformVersionMismatchException.writeToParcel(android.os.Parcel,int)
624UnflaggedApi: android.car.PortLocationType:
625    New API must be flagged with @FlaggedApi: class android.car.PortLocationType
626UnflaggedApi: android.car.PortLocationType#FRONT:
627    New API must be flagged with @FlaggedApi: field android.car.PortLocationType.FRONT
628UnflaggedApi: android.car.PortLocationType#FRONT_LEFT:
629    New API must be flagged with @FlaggedApi: field android.car.PortLocationType.FRONT_LEFT
630UnflaggedApi: android.car.PortLocationType#FRONT_RIGHT:
631    New API must be flagged with @FlaggedApi: field android.car.PortLocationType.FRONT_RIGHT
632UnflaggedApi: android.car.PortLocationType#REAR:
633    New API must be flagged with @FlaggedApi: field android.car.PortLocationType.REAR
634UnflaggedApi: android.car.PortLocationType#REAR_LEFT:
635    New API must be flagged with @FlaggedApi: field android.car.PortLocationType.REAR_LEFT
636UnflaggedApi: android.car.PortLocationType#REAR_RIGHT:
637    New API must be flagged with @FlaggedApi: field android.car.PortLocationType.REAR_RIGHT
638UnflaggedApi: android.car.PortLocationType#UNKNOWN:
639    New API must be flagged with @FlaggedApi: field android.car.PortLocationType.UNKNOWN
640UnflaggedApi: android.car.VehicleAreaSeat:
641    New API must be flagged with @FlaggedApi: class android.car.VehicleAreaSeat
642UnflaggedApi: android.car.VehicleAreaSeat#SEAT_ROW_1_CENTER:
643    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaSeat.SEAT_ROW_1_CENTER
644UnflaggedApi: android.car.VehicleAreaSeat#SEAT_ROW_1_LEFT:
645    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaSeat.SEAT_ROW_1_LEFT
646UnflaggedApi: android.car.VehicleAreaSeat#SEAT_ROW_1_RIGHT:
647    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaSeat.SEAT_ROW_1_RIGHT
648UnflaggedApi: android.car.VehicleAreaSeat#SEAT_ROW_2_CENTER:
649    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaSeat.SEAT_ROW_2_CENTER
650UnflaggedApi: android.car.VehicleAreaSeat#SEAT_ROW_2_LEFT:
651    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaSeat.SEAT_ROW_2_LEFT
652UnflaggedApi: android.car.VehicleAreaSeat#SEAT_ROW_2_RIGHT:
653    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaSeat.SEAT_ROW_2_RIGHT
654UnflaggedApi: android.car.VehicleAreaSeat#SEAT_ROW_3_CENTER:
655    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaSeat.SEAT_ROW_3_CENTER
656UnflaggedApi: android.car.VehicleAreaSeat#SEAT_ROW_3_LEFT:
657    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaSeat.SEAT_ROW_3_LEFT
658UnflaggedApi: android.car.VehicleAreaSeat#SEAT_ROW_3_RIGHT:
659    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaSeat.SEAT_ROW_3_RIGHT
660UnflaggedApi: android.car.VehicleAreaSeat#SEAT_UNKNOWN:
661    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaSeat.SEAT_UNKNOWN
662UnflaggedApi: android.car.VehicleAreaType:
663    New API must be flagged with @FlaggedApi: class android.car.VehicleAreaType
664UnflaggedApi: android.car.VehicleAreaType#VEHICLE_AREA_TYPE_DOOR:
665    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaType.VEHICLE_AREA_TYPE_DOOR
666UnflaggedApi: android.car.VehicleAreaType#VEHICLE_AREA_TYPE_GLOBAL:
667    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaType.VEHICLE_AREA_TYPE_GLOBAL
668UnflaggedApi: android.car.VehicleAreaType#VEHICLE_AREA_TYPE_MIRROR:
669    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaType.VEHICLE_AREA_TYPE_MIRROR
670UnflaggedApi: android.car.VehicleAreaType#VEHICLE_AREA_TYPE_SEAT:
671    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaType.VEHICLE_AREA_TYPE_SEAT
672UnflaggedApi: android.car.VehicleAreaType#VEHICLE_AREA_TYPE_WHEEL:
673    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaType.VEHICLE_AREA_TYPE_WHEEL
674UnflaggedApi: android.car.VehicleAreaType#VEHICLE_AREA_TYPE_WINDOW:
675    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaType.VEHICLE_AREA_TYPE_WINDOW
676UnflaggedApi: android.car.VehicleAreaWheel:
677    New API must be flagged with @FlaggedApi: class android.car.VehicleAreaWheel
678UnflaggedApi: android.car.VehicleAreaWheel#WHEEL_LEFT_FRONT:
679    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaWheel.WHEEL_LEFT_FRONT
680UnflaggedApi: android.car.VehicleAreaWheel#WHEEL_LEFT_REAR:
681    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaWheel.WHEEL_LEFT_REAR
682UnflaggedApi: android.car.VehicleAreaWheel#WHEEL_RIGHT_FRONT:
683    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaWheel.WHEEL_RIGHT_FRONT
684UnflaggedApi: android.car.VehicleAreaWheel#WHEEL_RIGHT_REAR:
685    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaWheel.WHEEL_RIGHT_REAR
686UnflaggedApi: android.car.VehicleAreaWheel#WHEEL_UNKNOWN:
687    New API must be flagged with @FlaggedApi: field android.car.VehicleAreaWheel.WHEEL_UNKNOWN
688UnflaggedApi: android.car.VehicleGear:
689    New API must be flagged with @FlaggedApi: class android.car.VehicleGear
690UnflaggedApi: android.car.VehicleGear#GEAR_DRIVE:
691    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_DRIVE
692UnflaggedApi: android.car.VehicleGear#GEAR_EIGHTH:
693    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_EIGHTH
694UnflaggedApi: android.car.VehicleGear#GEAR_FIFTH:
695    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_FIFTH
696UnflaggedApi: android.car.VehicleGear#GEAR_FIRST:
697    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_FIRST
698UnflaggedApi: android.car.VehicleGear#GEAR_FOURTH:
699    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_FOURTH
700UnflaggedApi: android.car.VehicleGear#GEAR_NEUTRAL:
701    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_NEUTRAL
702UnflaggedApi: android.car.VehicleGear#GEAR_NINTH:
703    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_NINTH
704UnflaggedApi: android.car.VehicleGear#GEAR_PARK:
705    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_PARK
706UnflaggedApi: android.car.VehicleGear#GEAR_REVERSE:
707    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_REVERSE
708UnflaggedApi: android.car.VehicleGear#GEAR_SECOND:
709    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_SECOND
710UnflaggedApi: android.car.VehicleGear#GEAR_SEVENTH:
711    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_SEVENTH
712UnflaggedApi: android.car.VehicleGear#GEAR_SIXTH:
713    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_SIXTH
714UnflaggedApi: android.car.VehicleGear#GEAR_THIRD:
715    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_THIRD
716UnflaggedApi: android.car.VehicleGear#GEAR_UNKNOWN:
717    New API must be flagged with @FlaggedApi: field android.car.VehicleGear.GEAR_UNKNOWN
718UnflaggedApi: android.car.VehicleGear#toString(int):
719    New API must be flagged with @FlaggedApi: method android.car.VehicleGear.toString(int)
720UnflaggedApi: android.car.VehicleIgnitionState:
721    New API must be flagged with @FlaggedApi: class android.car.VehicleIgnitionState
722UnflaggedApi: android.car.VehicleIgnitionState#ACC:
723    New API must be flagged with @FlaggedApi: field android.car.VehicleIgnitionState.ACC
724UnflaggedApi: android.car.VehicleIgnitionState#LOCK:
725    New API must be flagged with @FlaggedApi: field android.car.VehicleIgnitionState.LOCK
726UnflaggedApi: android.car.VehicleIgnitionState#OFF:
727    New API must be flagged with @FlaggedApi: field android.car.VehicleIgnitionState.OFF
728UnflaggedApi: android.car.VehicleIgnitionState#ON:
729    New API must be flagged with @FlaggedApi: field android.car.VehicleIgnitionState.ON
730UnflaggedApi: android.car.VehicleIgnitionState#START:
731    New API must be flagged with @FlaggedApi: field android.car.VehicleIgnitionState.START
732UnflaggedApi: android.car.VehicleIgnitionState#UNDEFINED:
733    New API must be flagged with @FlaggedApi: field android.car.VehicleIgnitionState.UNDEFINED
734UnflaggedApi: android.car.VehicleIgnitionState#toString(int):
735    New API must be flagged with @FlaggedApi: method android.car.VehicleIgnitionState.toString(int)
736UnflaggedApi: android.car.VehiclePropertyIds:
737    New API must be flagged with @FlaggedApi: class android.car.VehiclePropertyIds
738UnflaggedApi: android.car.VehiclePropertyIds#ABS_ACTIVE:
739    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.ABS_ACTIVE
740UnflaggedApi: android.car.VehiclePropertyIds#AP_POWER_BOOTUP_REASON:
741    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.AP_POWER_BOOTUP_REASON
742UnflaggedApi: android.car.VehiclePropertyIds#AP_POWER_STATE_REPORT:
743    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.AP_POWER_STATE_REPORT
744UnflaggedApi: android.car.VehiclePropertyIds#AP_POWER_STATE_REQ:
745    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.AP_POWER_STATE_REQ
746UnflaggedApi: android.car.VehiclePropertyIds#CABIN_LIGHTS_STATE:
747    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.CABIN_LIGHTS_STATE
748UnflaggedApi: android.car.VehiclePropertyIds#CABIN_LIGHTS_SWITCH:
749    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.CABIN_LIGHTS_SWITCH
750UnflaggedApi: android.car.VehiclePropertyIds#CRITICALLY_LOW_TIRE_PRESSURE:
751    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.CRITICALLY_LOW_TIRE_PRESSURE
752UnflaggedApi: android.car.VehiclePropertyIds#CURRENT_GEAR:
753    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.CURRENT_GEAR
754UnflaggedApi: android.car.VehiclePropertyIds#DISPLAY_BRIGHTNESS:
755    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.DISPLAY_BRIGHTNESS
756UnflaggedApi: android.car.VehiclePropertyIds#DISTANCE_DISPLAY_UNITS:
757    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.DISTANCE_DISPLAY_UNITS
758UnflaggedApi: android.car.VehiclePropertyIds#DOOR_LOCK:
759    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.DOOR_LOCK
760UnflaggedApi: android.car.VehiclePropertyIds#DOOR_MOVE:
761    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.DOOR_MOVE
762UnflaggedApi: android.car.VehiclePropertyIds#DOOR_POS:
763    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.DOOR_POS
764UnflaggedApi: android.car.VehiclePropertyIds#ELECTRONIC_TOLL_COLLECTION_CARD_STATUS:
765    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.ELECTRONIC_TOLL_COLLECTION_CARD_STATUS
766UnflaggedApi: android.car.VehiclePropertyIds#ELECTRONIC_TOLL_COLLECTION_CARD_TYPE:
767    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.ELECTRONIC_TOLL_COLLECTION_CARD_TYPE
768UnflaggedApi: android.car.VehiclePropertyIds#ENGINE_COOLANT_TEMP:
769    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.ENGINE_COOLANT_TEMP
770UnflaggedApi: android.car.VehiclePropertyIds#ENGINE_OIL_LEVEL:
771    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.ENGINE_OIL_LEVEL
772UnflaggedApi: android.car.VehiclePropertyIds#ENGINE_OIL_TEMP:
773    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.ENGINE_OIL_TEMP
774UnflaggedApi: android.car.VehiclePropertyIds#ENGINE_RPM:
775    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.ENGINE_RPM
776UnflaggedApi: android.car.VehiclePropertyIds#ENV_OUTSIDE_TEMPERATURE:
777    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.ENV_OUTSIDE_TEMPERATURE
778UnflaggedApi: android.car.VehiclePropertyIds#EPOCH_TIME:
779    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EPOCH_TIME
780UnflaggedApi: android.car.VehiclePropertyIds#EV_BATTERY_DISPLAY_UNITS:
781    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_BATTERY_DISPLAY_UNITS
782UnflaggedApi: android.car.VehiclePropertyIds#EV_BATTERY_INSTANTANEOUS_CHARGE_RATE:
783    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_BATTERY_INSTANTANEOUS_CHARGE_RATE
784UnflaggedApi: android.car.VehiclePropertyIds#EV_BATTERY_LEVEL:
785    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_BATTERY_LEVEL
786UnflaggedApi: android.car.VehiclePropertyIds#EV_BRAKE_REGENERATION_LEVEL:
787    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_BRAKE_REGENERATION_LEVEL
788UnflaggedApi: android.car.VehiclePropertyIds#EV_CHARGE_CURRENT_DRAW_LIMIT:
789    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_CHARGE_CURRENT_DRAW_LIMIT
790UnflaggedApi: android.car.VehiclePropertyIds#EV_CHARGE_PERCENT_LIMIT:
791    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_CHARGE_PERCENT_LIMIT
792UnflaggedApi: android.car.VehiclePropertyIds#EV_CHARGE_PORT_CONNECTED:
793    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_CHARGE_PORT_CONNECTED
794UnflaggedApi: android.car.VehiclePropertyIds#EV_CHARGE_PORT_OPEN:
795    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_CHARGE_PORT_OPEN
796UnflaggedApi: android.car.VehiclePropertyIds#EV_CHARGE_STATE:
797    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_CHARGE_STATE
798UnflaggedApi: android.car.VehiclePropertyIds#EV_CHARGE_SWITCH:
799    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_CHARGE_SWITCH
800UnflaggedApi: android.car.VehiclePropertyIds#EV_CHARGE_TIME_REMAINING:
801    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_CHARGE_TIME_REMAINING
802UnflaggedApi: android.car.VehiclePropertyIds#EV_CURRENT_BATTERY_CAPACITY:
803    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_CURRENT_BATTERY_CAPACITY
804UnflaggedApi: android.car.VehiclePropertyIds#EV_REGENERATIVE_BRAKING_STATE:
805    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_REGENERATIVE_BRAKING_STATE
806UnflaggedApi: android.car.VehiclePropertyIds#EV_STOPPING_MODE:
807    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.EV_STOPPING_MODE
808UnflaggedApi: android.car.VehiclePropertyIds#FOG_LIGHTS_STATE:
809    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.FOG_LIGHTS_STATE
810UnflaggedApi: android.car.VehiclePropertyIds#FOG_LIGHTS_SWITCH:
811    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.FOG_LIGHTS_SWITCH
812UnflaggedApi: android.car.VehiclePropertyIds#FRONT_FOG_LIGHTS_STATE:
813    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.FRONT_FOG_LIGHTS_STATE
814UnflaggedApi: android.car.VehiclePropertyIds#FRONT_FOG_LIGHTS_SWITCH:
815    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.FRONT_FOG_LIGHTS_SWITCH
816UnflaggedApi: android.car.VehiclePropertyIds#FUEL_CONSUMPTION_UNITS_DISTANCE_OVER_VOLUME:
817    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.FUEL_CONSUMPTION_UNITS_DISTANCE_OVER_VOLUME
818UnflaggedApi: android.car.VehiclePropertyIds#FUEL_DOOR_OPEN:
819    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.FUEL_DOOR_OPEN
820UnflaggedApi: android.car.VehiclePropertyIds#FUEL_LEVEL:
821    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.FUEL_LEVEL
822UnflaggedApi: android.car.VehiclePropertyIds#FUEL_LEVEL_LOW:
823    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.FUEL_LEVEL_LOW
824UnflaggedApi: android.car.VehiclePropertyIds#FUEL_VOLUME_DISPLAY_UNITS:
825    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.FUEL_VOLUME_DISPLAY_UNITS
826UnflaggedApi: android.car.VehiclePropertyIds#GEAR_SELECTION:
827    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.GEAR_SELECTION
828UnflaggedApi: android.car.VehiclePropertyIds#GENERAL_SAFETY_REGULATION_COMPLIANCE:
829    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.GENERAL_SAFETY_REGULATION_COMPLIANCE
830UnflaggedApi: android.car.VehiclePropertyIds#HAZARD_LIGHTS_STATE:
831    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HAZARD_LIGHTS_STATE
832UnflaggedApi: android.car.VehiclePropertyIds#HAZARD_LIGHTS_SWITCH:
833    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HAZARD_LIGHTS_SWITCH
834UnflaggedApi: android.car.VehiclePropertyIds#HEADLIGHTS_STATE:
835    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HEADLIGHTS_STATE
836UnflaggedApi: android.car.VehiclePropertyIds#HEADLIGHTS_SWITCH:
837    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HEADLIGHTS_SWITCH
838UnflaggedApi: android.car.VehiclePropertyIds#HIGH_BEAM_LIGHTS_STATE:
839    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HIGH_BEAM_LIGHTS_STATE
840UnflaggedApi: android.car.VehiclePropertyIds#HIGH_BEAM_LIGHTS_SWITCH:
841    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HIGH_BEAM_LIGHTS_SWITCH
842UnflaggedApi: android.car.VehiclePropertyIds#HVAC_ACTUAL_FAN_SPEED_RPM:
843    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_ACTUAL_FAN_SPEED_RPM
844UnflaggedApi: android.car.VehiclePropertyIds#HVAC_AC_ON:
845    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_AC_ON
846UnflaggedApi: android.car.VehiclePropertyIds#HVAC_AUTO_ON:
847    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_AUTO_ON
848UnflaggedApi: android.car.VehiclePropertyIds#HVAC_AUTO_RECIRC_ON:
849    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_AUTO_RECIRC_ON
850UnflaggedApi: android.car.VehiclePropertyIds#HVAC_DEFROSTER:
851    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_DEFROSTER
852UnflaggedApi: android.car.VehiclePropertyIds#HVAC_DUAL_ON:
853    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_DUAL_ON
854UnflaggedApi: android.car.VehiclePropertyIds#HVAC_FAN_DIRECTION:
855    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_FAN_DIRECTION
856UnflaggedApi: android.car.VehiclePropertyIds#HVAC_FAN_DIRECTION_AVAILABLE:
857    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_FAN_DIRECTION_AVAILABLE
858UnflaggedApi: android.car.VehiclePropertyIds#HVAC_FAN_SPEED:
859    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_FAN_SPEED
860UnflaggedApi: android.car.VehiclePropertyIds#HVAC_MAX_AC_ON:
861    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_MAX_AC_ON
862UnflaggedApi: android.car.VehiclePropertyIds#HVAC_MAX_DEFROST_ON:
863    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_MAX_DEFROST_ON
864UnflaggedApi: android.car.VehiclePropertyIds#HVAC_POWER_ON:
865    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_POWER_ON
866UnflaggedApi: android.car.VehiclePropertyIds#HVAC_RECIRC_ON:
867    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_RECIRC_ON
868UnflaggedApi: android.car.VehiclePropertyIds#HVAC_SEAT_TEMPERATURE:
869    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_SEAT_TEMPERATURE
870UnflaggedApi: android.car.VehiclePropertyIds#HVAC_SEAT_VENTILATION:
871    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_SEAT_VENTILATION
872UnflaggedApi: android.car.VehiclePropertyIds#HVAC_SIDE_MIRROR_HEAT:
873    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_SIDE_MIRROR_HEAT
874UnflaggedApi: android.car.VehiclePropertyIds#HVAC_STEERING_WHEEL_HEAT:
875    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_STEERING_WHEEL_HEAT
876UnflaggedApi: android.car.VehiclePropertyIds#HVAC_TEMPERATURE_CURRENT:
877    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_TEMPERATURE_CURRENT
878UnflaggedApi: android.car.VehiclePropertyIds#HVAC_TEMPERATURE_DISPLAY_UNITS:
879    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_TEMPERATURE_DISPLAY_UNITS
880UnflaggedApi: android.car.VehiclePropertyIds#HVAC_TEMPERATURE_SET:
881    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_TEMPERATURE_SET
882UnflaggedApi: android.car.VehiclePropertyIds#HVAC_TEMPERATURE_VALUE_SUGGESTION:
883    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HVAC_TEMPERATURE_VALUE_SUGGESTION
884UnflaggedApi: android.car.VehiclePropertyIds#HW_KEY_INPUT:
885    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.HW_KEY_INPUT
886UnflaggedApi: android.car.VehiclePropertyIds#IGNITION_STATE:
887    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.IGNITION_STATE
888UnflaggedApi: android.car.VehiclePropertyIds#INFO_DRIVER_SEAT:
889    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_DRIVER_SEAT
890UnflaggedApi: android.car.VehiclePropertyIds#INFO_EV_BATTERY_CAPACITY:
891    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_EV_BATTERY_CAPACITY
892UnflaggedApi: android.car.VehiclePropertyIds#INFO_EV_CONNECTOR_TYPE:
893    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_EV_CONNECTOR_TYPE
894UnflaggedApi: android.car.VehiclePropertyIds#INFO_EV_PORT_LOCATION:
895    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_EV_PORT_LOCATION
896UnflaggedApi: android.car.VehiclePropertyIds#INFO_EXTERIOR_DIMENSIONS:
897    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_EXTERIOR_DIMENSIONS
898UnflaggedApi: android.car.VehiclePropertyIds#INFO_FUEL_CAPACITY:
899    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_FUEL_CAPACITY
900UnflaggedApi: android.car.VehiclePropertyIds#INFO_FUEL_DOOR_LOCATION:
901    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_FUEL_DOOR_LOCATION
902UnflaggedApi: android.car.VehiclePropertyIds#INFO_FUEL_TYPE:
903    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_FUEL_TYPE
904UnflaggedApi: android.car.VehiclePropertyIds#INFO_MAKE:
905    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_MAKE
906UnflaggedApi: android.car.VehiclePropertyIds#INFO_MODEL:
907    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_MODEL
908UnflaggedApi: android.car.VehiclePropertyIds#INFO_MODEL_YEAR:
909    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_MODEL_YEAR
910UnflaggedApi: android.car.VehiclePropertyIds#INFO_MULTI_EV_PORT_LOCATIONS:
911    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_MULTI_EV_PORT_LOCATIONS
912UnflaggedApi: android.car.VehiclePropertyIds#INFO_VIN:
913    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INFO_VIN
914UnflaggedApi: android.car.VehiclePropertyIds#INVALID:
915    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.INVALID
916UnflaggedApi: android.car.VehiclePropertyIds#LOCATION_CHARACTERIZATION:
917    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.LOCATION_CHARACTERIZATION
918UnflaggedApi: android.car.VehiclePropertyIds#MIRROR_FOLD:
919    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.MIRROR_FOLD
920UnflaggedApi: android.car.VehiclePropertyIds#MIRROR_LOCK:
921    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.MIRROR_LOCK
922UnflaggedApi: android.car.VehiclePropertyIds#MIRROR_Y_MOVE:
923    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.MIRROR_Y_MOVE
924UnflaggedApi: android.car.VehiclePropertyIds#MIRROR_Y_POS:
925    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.MIRROR_Y_POS
926UnflaggedApi: android.car.VehiclePropertyIds#MIRROR_Z_MOVE:
927    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.MIRROR_Z_MOVE
928UnflaggedApi: android.car.VehiclePropertyIds#MIRROR_Z_POS:
929    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.MIRROR_Z_POS
930UnflaggedApi: android.car.VehiclePropertyIds#NIGHT_MODE:
931    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.NIGHT_MODE
932UnflaggedApi: android.car.VehiclePropertyIds#OBD2_FREEZE_FRAME:
933    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.OBD2_FREEZE_FRAME
934UnflaggedApi: android.car.VehiclePropertyIds#OBD2_FREEZE_FRAME_CLEAR:
935    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.OBD2_FREEZE_FRAME_CLEAR
936UnflaggedApi: android.car.VehiclePropertyIds#OBD2_FREEZE_FRAME_INFO:
937    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.OBD2_FREEZE_FRAME_INFO
938UnflaggedApi: android.car.VehiclePropertyIds#OBD2_LIVE_FRAME:
939    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.OBD2_LIVE_FRAME
940UnflaggedApi: android.car.VehiclePropertyIds#PARKING_BRAKE_AUTO_APPLY:
941    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.PARKING_BRAKE_AUTO_APPLY
942UnflaggedApi: android.car.VehiclePropertyIds#PARKING_BRAKE_ON:
943    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.PARKING_BRAKE_ON
944UnflaggedApi: android.car.VehiclePropertyIds#PERF_ODOMETER:
945    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.PERF_ODOMETER
946UnflaggedApi: android.car.VehiclePropertyIds#PERF_REAR_STEERING_ANGLE:
947    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.PERF_REAR_STEERING_ANGLE
948UnflaggedApi: android.car.VehiclePropertyIds#PERF_STEERING_ANGLE:
949    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.PERF_STEERING_ANGLE
950UnflaggedApi: android.car.VehiclePropertyIds#PERF_VEHICLE_SPEED:
951    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.PERF_VEHICLE_SPEED
952UnflaggedApi: android.car.VehiclePropertyIds#PERF_VEHICLE_SPEED_DISPLAY:
953    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.PERF_VEHICLE_SPEED_DISPLAY
954UnflaggedApi: android.car.VehiclePropertyIds#PER_DISPLAY_BRIGHTNESS:
955    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.PER_DISPLAY_BRIGHTNESS
956UnflaggedApi: android.car.VehiclePropertyIds#RANGE_REMAINING:
957    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.RANGE_REMAINING
958UnflaggedApi: android.car.VehiclePropertyIds#READING_LIGHTS_STATE:
959    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.READING_LIGHTS_STATE
960UnflaggedApi: android.car.VehiclePropertyIds#READING_LIGHTS_SWITCH:
961    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.READING_LIGHTS_SWITCH
962UnflaggedApi: android.car.VehiclePropertyIds#REAR_FOG_LIGHTS_STATE:
963    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.REAR_FOG_LIGHTS_STATE
964UnflaggedApi: android.car.VehiclePropertyIds#REAR_FOG_LIGHTS_SWITCH:
965    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.REAR_FOG_LIGHTS_SWITCH
966UnflaggedApi: android.car.VehiclePropertyIds#SEAT_BACKREST_ANGLE_1_MOVE:
967    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_BACKREST_ANGLE_1_MOVE
968UnflaggedApi: android.car.VehiclePropertyIds#SEAT_BACKREST_ANGLE_1_POS:
969    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_BACKREST_ANGLE_1_POS
970UnflaggedApi: android.car.VehiclePropertyIds#SEAT_BACKREST_ANGLE_2_MOVE:
971    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_BACKREST_ANGLE_2_MOVE
972UnflaggedApi: android.car.VehiclePropertyIds#SEAT_BACKREST_ANGLE_2_POS:
973    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_BACKREST_ANGLE_2_POS
974UnflaggedApi: android.car.VehiclePropertyIds#SEAT_BELT_BUCKLED:
975    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_BELT_BUCKLED
976UnflaggedApi: android.car.VehiclePropertyIds#SEAT_BELT_HEIGHT_MOVE:
977    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_BELT_HEIGHT_MOVE
978UnflaggedApi: android.car.VehiclePropertyIds#SEAT_BELT_HEIGHT_POS:
979    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_BELT_HEIGHT_POS
980UnflaggedApi: android.car.VehiclePropertyIds#SEAT_DEPTH_MOVE:
981    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_DEPTH_MOVE
982UnflaggedApi: android.car.VehiclePropertyIds#SEAT_DEPTH_POS:
983    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_DEPTH_POS
984UnflaggedApi: android.car.VehiclePropertyIds#SEAT_FOOTWELL_LIGHTS_STATE:
985    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_FOOTWELL_LIGHTS_STATE
986UnflaggedApi: android.car.VehiclePropertyIds#SEAT_FOOTWELL_LIGHTS_SWITCH:
987    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_FOOTWELL_LIGHTS_SWITCH
988UnflaggedApi: android.car.VehiclePropertyIds#SEAT_FORE_AFT_MOVE:
989    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_FORE_AFT_MOVE
990UnflaggedApi: android.car.VehiclePropertyIds#SEAT_FORE_AFT_POS:
991    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_FORE_AFT_POS
992UnflaggedApi: android.car.VehiclePropertyIds#SEAT_HEADREST_ANGLE_MOVE:
993    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_HEADREST_ANGLE_MOVE
994UnflaggedApi: android.car.VehiclePropertyIds#SEAT_HEADREST_ANGLE_POS:
995    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_HEADREST_ANGLE_POS
996UnflaggedApi: android.car.VehiclePropertyIds#SEAT_HEADREST_FORE_AFT_MOVE:
997    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_HEADREST_FORE_AFT_MOVE
998UnflaggedApi: android.car.VehiclePropertyIds#SEAT_HEADREST_FORE_AFT_POS:
999    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_HEADREST_FORE_AFT_POS
1000UnflaggedApi: android.car.VehiclePropertyIds#SEAT_HEADREST_HEIGHT_MOVE:
1001    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_HEADREST_HEIGHT_MOVE
1002UnflaggedApi: android.car.VehiclePropertyIds#SEAT_HEADREST_HEIGHT_POS_V2:
1003    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_HEADREST_HEIGHT_POS_V2
1004UnflaggedApi: android.car.VehiclePropertyIds#SEAT_HEIGHT_MOVE:
1005    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_HEIGHT_MOVE
1006UnflaggedApi: android.car.VehiclePropertyIds#SEAT_HEIGHT_POS:
1007    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_HEIGHT_POS
1008UnflaggedApi: android.car.VehiclePropertyIds#SEAT_LUMBAR_FORE_AFT_MOVE:
1009    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_LUMBAR_FORE_AFT_MOVE
1010UnflaggedApi: android.car.VehiclePropertyIds#SEAT_LUMBAR_FORE_AFT_POS:
1011    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_LUMBAR_FORE_AFT_POS
1012UnflaggedApi: android.car.VehiclePropertyIds#SEAT_LUMBAR_SIDE_SUPPORT_MOVE:
1013    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_LUMBAR_SIDE_SUPPORT_MOVE
1014UnflaggedApi: android.car.VehiclePropertyIds#SEAT_LUMBAR_SIDE_SUPPORT_POS:
1015    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_LUMBAR_SIDE_SUPPORT_POS
1016UnflaggedApi: android.car.VehiclePropertyIds#SEAT_MEMORY_SELECT:
1017    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_MEMORY_SELECT
1018UnflaggedApi: android.car.VehiclePropertyIds#SEAT_MEMORY_SET:
1019    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_MEMORY_SET
1020UnflaggedApi: android.car.VehiclePropertyIds#SEAT_OCCUPANCY:
1021    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_OCCUPANCY
1022UnflaggedApi: android.car.VehiclePropertyIds#SEAT_TILT_MOVE:
1023    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_TILT_MOVE
1024UnflaggedApi: android.car.VehiclePropertyIds#SEAT_TILT_POS:
1025    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.SEAT_TILT_POS
1026UnflaggedApi: android.car.VehiclePropertyIds#STEERING_WHEEL_LIGHTS_STATE:
1027    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.STEERING_WHEEL_LIGHTS_STATE
1028UnflaggedApi: android.car.VehiclePropertyIds#STEERING_WHEEL_LIGHTS_SWITCH:
1029    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.STEERING_WHEEL_LIGHTS_SWITCH
1030UnflaggedApi: android.car.VehiclePropertyIds#TIRE_PRESSURE:
1031    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.TIRE_PRESSURE
1032UnflaggedApi: android.car.VehiclePropertyIds#TIRE_PRESSURE_DISPLAY_UNITS:
1033    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.TIRE_PRESSURE_DISPLAY_UNITS
1034UnflaggedApi: android.car.VehiclePropertyIds#TRACTION_CONTROL_ACTIVE:
1035    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.TRACTION_CONTROL_ACTIVE
1036UnflaggedApi: android.car.VehiclePropertyIds#TRAILER_PRESENT:
1037    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.TRAILER_PRESENT
1038UnflaggedApi: android.car.VehiclePropertyIds#TURN_SIGNAL_STATE:
1039    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.TURN_SIGNAL_STATE
1040UnflaggedApi: android.car.VehiclePropertyIds#VEHICLE_CURB_WEIGHT:
1041    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.VEHICLE_CURB_WEIGHT
1042UnflaggedApi: android.car.VehiclePropertyIds#VEHICLE_MAP_SERVICE:
1043    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.VEHICLE_MAP_SERVICE
1044UnflaggedApi: android.car.VehiclePropertyIds#VEHICLE_SPEED_DISPLAY_UNITS:
1045    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.VEHICLE_SPEED_DISPLAY_UNITS
1046UnflaggedApi: android.car.VehiclePropertyIds#WHEEL_TICK:
1047    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.WHEEL_TICK
1048UnflaggedApi: android.car.VehiclePropertyIds#WINDOW_LOCK:
1049    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.WINDOW_LOCK
1050UnflaggedApi: android.car.VehiclePropertyIds#WINDOW_MOVE:
1051    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.WINDOW_MOVE
1052UnflaggedApi: android.car.VehiclePropertyIds#WINDOW_POS:
1053    New API must be flagged with @FlaggedApi: field android.car.VehiclePropertyIds.WINDOW_POS
1054UnflaggedApi: android.car.VehiclePropertyIds#toString(int):
1055    New API must be flagged with @FlaggedApi: method android.car.VehiclePropertyIds.toString(int)
1056UnflaggedApi: android.car.VehicleUnit:
1057    New API must be flagged with @FlaggedApi: class android.car.VehicleUnit
1058UnflaggedApi: android.car.VehicleUnit#AMPERE_HOURS:
1059    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.AMPERE_HOURS
1060UnflaggedApi: android.car.VehicleUnit#BAR:
1061    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.BAR
1062UnflaggedApi: android.car.VehicleUnit#CELSIUS:
1063    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.CELSIUS
1064UnflaggedApi: android.car.VehicleUnit#FAHRENHEIT:
1065    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.FAHRENHEIT
1066UnflaggedApi: android.car.VehicleUnit#IMPERIAL_GALLON:
1067    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.IMPERIAL_GALLON
1068UnflaggedApi: android.car.VehicleUnit#KELVIN:
1069    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.KELVIN
1070UnflaggedApi: android.car.VehicleUnit#KILOMETER:
1071    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.KILOMETER
1072UnflaggedApi: android.car.VehicleUnit#KILOMETERS_PER_HOUR:
1073    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.KILOMETERS_PER_HOUR
1074UnflaggedApi: android.car.VehicleUnit#KILOPASCAL:
1075    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.KILOPASCAL
1076UnflaggedApi: android.car.VehicleUnit#KILOWATT_HOUR:
1077    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.KILOWATT_HOUR
1078UnflaggedApi: android.car.VehicleUnit#LITER:
1079    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.LITER
1080UnflaggedApi: android.car.VehicleUnit#METER:
1081    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.METER
1082UnflaggedApi: android.car.VehicleUnit#METER_PER_SEC:
1083    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.METER_PER_SEC
1084UnflaggedApi: android.car.VehicleUnit#MILE:
1085    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.MILE
1086UnflaggedApi: android.car.VehicleUnit#MILES_PER_HOUR:
1087    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.MILES_PER_HOUR
1088UnflaggedApi: android.car.VehicleUnit#MILLILITER:
1089    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.MILLILITER
1090UnflaggedApi: android.car.VehicleUnit#MILLIMETER:
1091    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.MILLIMETER
1092UnflaggedApi: android.car.VehicleUnit#PSI:
1093    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.PSI
1094UnflaggedApi: android.car.VehicleUnit#US_GALLON:
1095    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.US_GALLON
1096UnflaggedApi: android.car.VehicleUnit#WATT_HOUR:
1097    New API must be flagged with @FlaggedApi: field android.car.VehicleUnit.WATT_HOUR
1098UnflaggedApi: android.car.content.pm.CarPackageManager:
1099    New API must be flagged with @FlaggedApi: class android.car.content.pm.CarPackageManager
1100UnflaggedApi: android.car.content.pm.CarPackageManager#isActivityDistractionOptimized(String, String):
1101    New API must be flagged with @FlaggedApi: method android.car.content.pm.CarPackageManager.isActivityDistractionOptimized(String,String)
1102UnflaggedApi: android.car.content.pm.CarPackageManager#isPendingIntentDistractionOptimized(android.app.PendingIntent):
1103    New API must be flagged with @FlaggedApi: method android.car.content.pm.CarPackageManager.isPendingIntentDistractionOptimized(android.app.PendingIntent)
1104UnflaggedApi: android.car.content.pm.CarPackageManager#isServiceDistractionOptimized(String, String):
1105    New API must be flagged with @FlaggedApi: method android.car.content.pm.CarPackageManager.isServiceDistractionOptimized(String,String)
1106UnflaggedApi: android.car.drivingstate.CarUxRestrictions:
1107    New API must be flagged with @FlaggedApi: class android.car.drivingstate.CarUxRestrictions
1108UnflaggedApi: android.car.drivingstate.CarUxRestrictions#CREATOR:
1109    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.CREATOR
1110UnflaggedApi: android.car.drivingstate.CarUxRestrictions#CarUxRestrictions(android.car.drivingstate.CarUxRestrictions):
1111    New API must be flagged with @FlaggedApi: constructor android.car.drivingstate.CarUxRestrictions(android.car.drivingstate.CarUxRestrictions)
1112UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_BASELINE:
1113    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_BASELINE
1114UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_FULLY_RESTRICTED:
1115    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_FULLY_RESTRICTED
1116UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_LIMIT_CONTENT:
1117    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_LIMIT_CONTENT
1118UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_LIMIT_STRING_LENGTH:
1119    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_LIMIT_STRING_LENGTH
1120UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_NO_DIALPAD:
1121    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_NO_DIALPAD
1122UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_NO_FILTERING:
1123    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_NO_FILTERING
1124UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_NO_KEYBOARD:
1125    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_NO_KEYBOARD
1126UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_NO_SETUP:
1127    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_NO_SETUP
1128UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_NO_TEXT_MESSAGE:
1129    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_NO_TEXT_MESSAGE
1130UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_NO_VIDEO:
1131    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_NO_VIDEO
1132UnflaggedApi: android.car.drivingstate.CarUxRestrictions#UX_RESTRICTIONS_NO_VOICE_TRANSCRIPTION:
1133    New API must be flagged with @FlaggedApi: field android.car.drivingstate.CarUxRestrictions.UX_RESTRICTIONS_NO_VOICE_TRANSCRIPTION
1134UnflaggedApi: android.car.drivingstate.CarUxRestrictions#describeContents():
1135    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.describeContents()
1136UnflaggedApi: android.car.drivingstate.CarUxRestrictions#getActiveRestrictions():
1137    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.getActiveRestrictions()
1138UnflaggedApi: android.car.drivingstate.CarUxRestrictions#getMaxContentDepth():
1139    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.getMaxContentDepth()
1140UnflaggedApi: android.car.drivingstate.CarUxRestrictions#getMaxCumulativeContentItems():
1141    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.getMaxCumulativeContentItems()
1142UnflaggedApi: android.car.drivingstate.CarUxRestrictions#getMaxRestrictedStringLength():
1143    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.getMaxRestrictedStringLength()
1144UnflaggedApi: android.car.drivingstate.CarUxRestrictions#isRequiresDistractionOptimization():
1145    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.isRequiresDistractionOptimization()
1146UnflaggedApi: android.car.drivingstate.CarUxRestrictions#isSameRestrictions(android.car.drivingstate.CarUxRestrictions):
1147    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.isSameRestrictions(android.car.drivingstate.CarUxRestrictions)
1148UnflaggedApi: android.car.drivingstate.CarUxRestrictions#writeToParcel(android.os.Parcel, int):
1149    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.writeToParcel(android.os.Parcel,int)
1150UnflaggedApi: android.car.drivingstate.CarUxRestrictions.Builder:
1151    New API must be flagged with @FlaggedApi: class android.car.drivingstate.CarUxRestrictions.Builder
1152UnflaggedApi: android.car.drivingstate.CarUxRestrictions.Builder#Builder(boolean, int, long):
1153    New API must be flagged with @FlaggedApi: constructor android.car.drivingstate.CarUxRestrictions.Builder(boolean,int,long)
1154UnflaggedApi: android.car.drivingstate.CarUxRestrictions.Builder#build():
1155    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.Builder.build()
1156UnflaggedApi: android.car.drivingstate.CarUxRestrictions.Builder#setMaxContentDepth(int):
1157    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.Builder.setMaxContentDepth(int)
1158UnflaggedApi: android.car.drivingstate.CarUxRestrictions.Builder#setMaxCumulativeContentItems(int):
1159    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.Builder.setMaxCumulativeContentItems(int)
1160UnflaggedApi: android.car.drivingstate.CarUxRestrictions.Builder#setMaxStringLength(int):
1161    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictions.Builder.setMaxStringLength(int)
1162UnflaggedApi: android.car.drivingstate.CarUxRestrictions.CarUxRestrictionsInfo:
1163    New API must be flagged with @FlaggedApi: class android.car.drivingstate.CarUxRestrictions.CarUxRestrictionsInfo
1164UnflaggedApi: android.car.drivingstate.CarUxRestrictionsManager:
1165    New API must be flagged with @FlaggedApi: class android.car.drivingstate.CarUxRestrictionsManager
1166UnflaggedApi: android.car.drivingstate.CarUxRestrictionsManager#getCurrentCarUxRestrictions():
1167    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictionsManager.getCurrentCarUxRestrictions()
1168UnflaggedApi: android.car.drivingstate.CarUxRestrictionsManager#registerListener(android.car.drivingstate.CarUxRestrictionsManager.OnUxRestrictionsChangedListener):
1169    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictionsManager.registerListener(android.car.drivingstate.CarUxRestrictionsManager.OnUxRestrictionsChangedListener)
1170UnflaggedApi: android.car.drivingstate.CarUxRestrictionsManager#unregisterListener():
1171    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictionsManager.unregisterListener()
1172UnflaggedApi: android.car.drivingstate.CarUxRestrictionsManager.OnUxRestrictionsChangedListener:
1173    New API must be flagged with @FlaggedApi: class android.car.drivingstate.CarUxRestrictionsManager.OnUxRestrictionsChangedListener
1174UnflaggedApi: android.car.drivingstate.CarUxRestrictionsManager.OnUxRestrictionsChangedListener#onUxRestrictionsChanged(android.car.drivingstate.CarUxRestrictions):
1175    New API must be flagged with @FlaggedApi: method android.car.drivingstate.CarUxRestrictionsManager.OnUxRestrictionsChangedListener.onUxRestrictionsChanged(android.car.drivingstate.CarUxRestrictions)
1176UnflaggedApi: android.car.hardware.CarPropertyConfig:
1177    New API must be flagged with @FlaggedApi: class android.car.hardware.CarPropertyConfig
1178UnflaggedApi: android.car.hardware.CarPropertyConfig#CREATOR:
1179    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyConfig.CREATOR
1180UnflaggedApi: android.car.hardware.CarPropertyConfig#VEHICLE_PROPERTY_ACCESS_NONE:
1181    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyConfig.VEHICLE_PROPERTY_ACCESS_NONE
1182UnflaggedApi: android.car.hardware.CarPropertyConfig#VEHICLE_PROPERTY_ACCESS_READ:
1183    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyConfig.VEHICLE_PROPERTY_ACCESS_READ
1184UnflaggedApi: android.car.hardware.CarPropertyConfig#VEHICLE_PROPERTY_ACCESS_READ_WRITE:
1185    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyConfig.VEHICLE_PROPERTY_ACCESS_READ_WRITE
1186UnflaggedApi: android.car.hardware.CarPropertyConfig#VEHICLE_PROPERTY_ACCESS_WRITE:
1187    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyConfig.VEHICLE_PROPERTY_ACCESS_WRITE
1188UnflaggedApi: android.car.hardware.CarPropertyConfig#VEHICLE_PROPERTY_CHANGE_MODE_CONTINUOUS:
1189    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyConfig.VEHICLE_PROPERTY_CHANGE_MODE_CONTINUOUS
1190UnflaggedApi: android.car.hardware.CarPropertyConfig#VEHICLE_PROPERTY_CHANGE_MODE_ONCHANGE:
1191    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyConfig.VEHICLE_PROPERTY_CHANGE_MODE_ONCHANGE
1192UnflaggedApi: android.car.hardware.CarPropertyConfig#VEHICLE_PROPERTY_CHANGE_MODE_STATIC:
1193    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyConfig.VEHICLE_PROPERTY_CHANGE_MODE_STATIC
1194UnflaggedApi: android.car.hardware.CarPropertyConfig#describeContents():
1195    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.describeContents()
1196UnflaggedApi: android.car.hardware.CarPropertyConfig#getAccess():
1197    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getAccess()
1198UnflaggedApi: android.car.hardware.CarPropertyConfig#getAreaIdConfig(int):
1199    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getAreaIdConfig(int)
1200UnflaggedApi: android.car.hardware.CarPropertyConfig#getAreaIdConfigs():
1201    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getAreaIdConfigs()
1202UnflaggedApi: android.car.hardware.CarPropertyConfig#getAreaIds():
1203    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getAreaIds()
1204UnflaggedApi: android.car.hardware.CarPropertyConfig#getAreaType():
1205    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getAreaType()
1206UnflaggedApi: android.car.hardware.CarPropertyConfig#getChangeMode():
1207    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getChangeMode()
1208UnflaggedApi: android.car.hardware.CarPropertyConfig#getConfigArray():
1209    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getConfigArray()
1210UnflaggedApi: android.car.hardware.CarPropertyConfig#getMaxSampleRate():
1211    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getMaxSampleRate()
1212UnflaggedApi: android.car.hardware.CarPropertyConfig#getMinSampleRate():
1213    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getMinSampleRate()
1214UnflaggedApi: android.car.hardware.CarPropertyConfig#getPropertyId():
1215    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getPropertyId()
1216UnflaggedApi: android.car.hardware.CarPropertyConfig#getPropertyType():
1217    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.getPropertyType()
1218UnflaggedApi: android.car.hardware.CarPropertyConfig#isGlobalProperty():
1219    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.isGlobalProperty()
1220UnflaggedApi: android.car.hardware.CarPropertyConfig#writeToParcel(android.os.Parcel, int):
1221    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyConfig.writeToParcel(android.os.Parcel,int)
1222UnflaggedApi: android.car.hardware.CarPropertyValue:
1223    New API must be flagged with @FlaggedApi: class android.car.hardware.CarPropertyValue
1224UnflaggedApi: android.car.hardware.CarPropertyValue#CREATOR:
1225    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyValue.CREATOR
1226UnflaggedApi: android.car.hardware.CarPropertyValue#STATUS_AVAILABLE:
1227    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyValue.STATUS_AVAILABLE
1228UnflaggedApi: android.car.hardware.CarPropertyValue#STATUS_ERROR:
1229    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyValue.STATUS_ERROR
1230UnflaggedApi: android.car.hardware.CarPropertyValue#STATUS_UNAVAILABLE:
1231    New API must be flagged with @FlaggedApi: field android.car.hardware.CarPropertyValue.STATUS_UNAVAILABLE
1232UnflaggedApi: android.car.hardware.CarPropertyValue#describeContents():
1233    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyValue.describeContents()
1234UnflaggedApi: android.car.hardware.CarPropertyValue#getAreaId():
1235    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyValue.getAreaId()
1236UnflaggedApi: android.car.hardware.CarPropertyValue#getPropertyId():
1237    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyValue.getPropertyId()
1238UnflaggedApi: android.car.hardware.CarPropertyValue#getStatus():
1239    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyValue.getStatus()
1240UnflaggedApi: android.car.hardware.CarPropertyValue#getTimestamp():
1241    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyValue.getTimestamp()
1242UnflaggedApi: android.car.hardware.CarPropertyValue#getValue():
1243    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyValue.getValue()
1244UnflaggedApi: android.car.hardware.CarPropertyValue#writeToParcel(android.os.Parcel, int):
1245    New API must be flagged with @FlaggedApi: method android.car.hardware.CarPropertyValue.writeToParcel(android.os.Parcel,int)
1246UnflaggedApi: android.car.hardware.CarPropertyValue.PropertyStatus:
1247    New API must be flagged with @FlaggedApi: class android.car.hardware.CarPropertyValue.PropertyStatus
1248UnflaggedApi: android.car.hardware.CarSensorEvent#CREATOR:
1249    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.CREATOR
1250UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_DRIVE:
1251    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_DRIVE
1252UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_EIGHTH:
1253    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_EIGHTH
1254UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_FIFTH:
1255    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_FIFTH
1256UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_FIRST:
1257    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_FIRST
1258UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_FOURTH:
1259    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_FOURTH
1260UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_NEUTRAL:
1261    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_NEUTRAL
1262UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_NINTH:
1263    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_NINTH
1264UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_PARK:
1265    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_PARK
1266UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_REVERSE:
1267    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_REVERSE
1268UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_SECOND:
1269    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_SECOND
1270UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_SEVENTH:
1271    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_SEVENTH
1272UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_SIXTH:
1273    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_SIXTH
1274UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_TENTH:
1275    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_TENTH
1276UnflaggedApi: android.car.hardware.CarSensorEvent#GEAR_THIRD:
1277    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.GEAR_THIRD
1278UnflaggedApi: android.car.hardware.CarSensorEvent#IGNITION_STATE_ACC:
1279    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.IGNITION_STATE_ACC
1280UnflaggedApi: android.car.hardware.CarSensorEvent#IGNITION_STATE_LOCK:
1281    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.IGNITION_STATE_LOCK
1282UnflaggedApi: android.car.hardware.CarSensorEvent#IGNITION_STATE_OFF:
1283    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.IGNITION_STATE_OFF
1284UnflaggedApi: android.car.hardware.CarSensorEvent#IGNITION_STATE_ON:
1285    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.IGNITION_STATE_ON
1286UnflaggedApi: android.car.hardware.CarSensorEvent#IGNITION_STATE_START:
1287    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.IGNITION_STATE_START
1288UnflaggedApi: android.car.hardware.CarSensorEvent#IGNITION_STATE_UNDEFINED:
1289    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.IGNITION_STATE_UNDEFINED
1290UnflaggedApi: android.car.hardware.CarSensorEvent#INDEX_ENVIRONMENT_TEMPERATURE:
1291    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.INDEX_ENVIRONMENT_TEMPERATURE
1292UnflaggedApi: android.car.hardware.CarSensorEvent#INDEX_WHEEL_DISTANCE_FRONT_LEFT:
1293    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.INDEX_WHEEL_DISTANCE_FRONT_LEFT
1294UnflaggedApi: android.car.hardware.CarSensorEvent#INDEX_WHEEL_DISTANCE_FRONT_RIGHT:
1295    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.INDEX_WHEEL_DISTANCE_FRONT_RIGHT
1296UnflaggedApi: android.car.hardware.CarSensorEvent#INDEX_WHEEL_DISTANCE_REAR_LEFT:
1297    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.INDEX_WHEEL_DISTANCE_REAR_LEFT
1298UnflaggedApi: android.car.hardware.CarSensorEvent#INDEX_WHEEL_DISTANCE_REAR_RIGHT:
1299    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.INDEX_WHEEL_DISTANCE_REAR_RIGHT
1300UnflaggedApi: android.car.hardware.CarSensorEvent#INDEX_WHEEL_DISTANCE_RESET_COUNT:
1301    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.INDEX_WHEEL_DISTANCE_RESET_COUNT
1302UnflaggedApi: android.car.hardware.CarSensorEvent#describeContents():
1303    New API must be flagged with @FlaggedApi: method android.car.hardware.CarSensorEvent.describeContents()
1304UnflaggedApi: android.car.hardware.CarSensorEvent#floatValues:
1305    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.floatValues
1306UnflaggedApi: android.car.hardware.CarSensorEvent#intValues:
1307    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.intValues
1308UnflaggedApi: android.car.hardware.CarSensorEvent#longValues:
1309    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.longValues
1310UnflaggedApi: android.car.hardware.CarSensorEvent#sensorType:
1311    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.sensorType
1312UnflaggedApi: android.car.hardware.CarSensorEvent#timestamp:
1313    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.timestamp
1314UnflaggedApi: android.car.hardware.CarSensorEvent#writeToParcel(android.os.Parcel, int):
1315    New API must be flagged with @FlaggedApi: method android.car.hardware.CarSensorEvent.writeToParcel(android.os.Parcel,int)
1316UnflaggedApi: android.car.hardware.CarSensorEvent.EnvironmentData:
1317    New API must be flagged with @FlaggedApi: class android.car.hardware.CarSensorEvent.EnvironmentData
1318UnflaggedApi: android.car.hardware.CarSensorEvent.EnvironmentData#temperature:
1319    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.EnvironmentData.temperature
1320UnflaggedApi: android.car.hardware.CarSensorEvent.EnvironmentData#timestamp:
1321    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorEvent.EnvironmentData.timestamp
1322UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_RATE_FAST:
1323    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_RATE_FAST
1324UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_RATE_FASTEST:
1325    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_RATE_FASTEST
1326UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_RATE_NORMAL:
1327    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_RATE_NORMAL
1328UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_RATE_ONCHANGE:
1329    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_RATE_ONCHANGE
1330UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_RATE_UI:
1331    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_RATE_UI
1332UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_ABS_ACTIVE:
1333    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_ABS_ACTIVE
1334UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_CAR_SPEED:
1335    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_CAR_SPEED
1336UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_ENGINE_OIL_LEVEL:
1337    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_ENGINE_OIL_LEVEL
1338UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_ENV_OUTSIDE_TEMPERATURE:
1339    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_ENV_OUTSIDE_TEMPERATURE
1340UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_EV_BATTERY_CHARGE_RATE:
1341    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_EV_BATTERY_CHARGE_RATE
1342UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_EV_BATTERY_LEVEL:
1343    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_EV_BATTERY_LEVEL
1344UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_EV_CHARGE_PORT_CONNECTED:
1345    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_EV_CHARGE_PORT_CONNECTED
1346UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_EV_CHARGE_PORT_OPEN:
1347    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_EV_CHARGE_PORT_OPEN
1348UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_FUEL_DOOR_OPEN:
1349    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_FUEL_DOOR_OPEN
1350UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_FUEL_LEVEL:
1351    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_FUEL_LEVEL
1352UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_GEAR:
1353    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_GEAR
1354UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_IGNITION_STATE:
1355    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_IGNITION_STATE
1356UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_NIGHT:
1357    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_NIGHT
1358UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_ODOMETER:
1359    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_ODOMETER
1360UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_PARKING_BRAKE:
1361    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_PARKING_BRAKE
1362UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_RPM:
1363    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_RPM
1364UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_TRACTION_CONTROL_ACTIVE:
1365    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_TRACTION_CONTROL_ACTIVE
1366UnflaggedApi: android.car.hardware.CarSensorManager#SENSOR_TYPE_WHEEL_TICK_DISTANCE:
1367    New API must be flagged with @FlaggedApi: field android.car.hardware.CarSensorManager.SENSOR_TYPE_WHEEL_TICK_DISTANCE
1368UnflaggedApi: android.car.hardware.CarSensorManager#getLatestSensorEvent(int):
1369    New API must be flagged with @FlaggedApi: method android.car.hardware.CarSensorManager.getLatestSensorEvent(int)
1370UnflaggedApi: android.car.hardware.CarSensorManager#getPropertyList():
1371    New API must be flagged with @FlaggedApi: method android.car.hardware.CarSensorManager.getPropertyList()
1372UnflaggedApi: android.car.hardware.CarSensorManager#getSupportedSensors():
1373    New API must be flagged with @FlaggedApi: method android.car.hardware.CarSensorManager.getSupportedSensors()
1374UnflaggedApi: android.car.hardware.CarSensorManager#isSensorSupported(int):
1375    New API must be flagged with @FlaggedApi: method android.car.hardware.CarSensorManager.isSensorSupported(int)
1376UnflaggedApi: android.car.hardware.CarSensorManager#registerListener(android.car.hardware.CarSensorManager.OnSensorChangedListener, int, int):
1377    New API must be flagged with @FlaggedApi: method android.car.hardware.CarSensorManager.registerListener(android.car.hardware.CarSensorManager.OnSensorChangedListener,int,int)
1378UnflaggedApi: android.car.hardware.CarSensorManager#unregisterListener(android.car.hardware.CarSensorManager.OnSensorChangedListener):
1379    New API must be flagged with @FlaggedApi: method android.car.hardware.CarSensorManager.unregisterListener(android.car.hardware.CarSensorManager.OnSensorChangedListener)
1380UnflaggedApi: android.car.hardware.CarSensorManager#unregisterListener(android.car.hardware.CarSensorManager.OnSensorChangedListener, int):
1381    New API must be flagged with @FlaggedApi: method android.car.hardware.CarSensorManager.unregisterListener(android.car.hardware.CarSensorManager.OnSensorChangedListener,int)
1382UnflaggedApi: android.car.hardware.CarSensorManager.OnSensorChangedListener:
1383    New API must be flagged with @FlaggedApi: class android.car.hardware.CarSensorManager.OnSensorChangedListener
1384UnflaggedApi: android.car.hardware.CarSensorManager.OnSensorChangedListener#onSensorChanged(android.car.hardware.CarSensorEvent):
1385    New API must be flagged with @FlaggedApi: method android.car.hardware.CarSensorManager.OnSensorChangedListener.onSensorChanged(android.car.hardware.CarSensorEvent)
1386UnflaggedApi: android.car.hardware.power.CarPowerManager:
1387    New API must be flagged with @FlaggedApi: class android.car.hardware.power.CarPowerManager
1388UnflaggedApi: android.car.hardware.power.CarPowerManager#addPowerPolicyListener(java.util.concurrent.Executor, android.car.hardware.power.CarPowerPolicyFilter, android.car.hardware.power.CarPowerManager.CarPowerPolicyListener):
1389    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerManager.addPowerPolicyListener(java.util.concurrent.Executor,android.car.hardware.power.CarPowerPolicyFilter,android.car.hardware.power.CarPowerManager.CarPowerPolicyListener)
1390UnflaggedApi: android.car.hardware.power.CarPowerManager#getCurrentPowerPolicy():
1391    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerManager.getCurrentPowerPolicy()
1392UnflaggedApi: android.car.hardware.power.CarPowerManager#removePowerPolicyListener(android.car.hardware.power.CarPowerManager.CarPowerPolicyListener):
1393    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerManager.removePowerPolicyListener(android.car.hardware.power.CarPowerManager.CarPowerPolicyListener)
1394UnflaggedApi: android.car.hardware.power.CarPowerManager.CarPowerPolicyListener:
1395    New API must be flagged with @FlaggedApi: class android.car.hardware.power.CarPowerManager.CarPowerPolicyListener
1396UnflaggedApi: android.car.hardware.power.CarPowerManager.CarPowerPolicyListener#onPolicyChanged(android.car.hardware.power.CarPowerPolicy):
1397    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerManager.CarPowerPolicyListener.onPolicyChanged(android.car.hardware.power.CarPowerPolicy)
1398UnflaggedApi: android.car.hardware.power.CarPowerPolicy:
1399    New API must be flagged with @FlaggedApi: class android.car.hardware.power.CarPowerPolicy
1400UnflaggedApi: android.car.hardware.power.CarPowerPolicy#CREATOR:
1401    New API must be flagged with @FlaggedApi: field android.car.hardware.power.CarPowerPolicy.CREATOR
1402UnflaggedApi: android.car.hardware.power.CarPowerPolicy#describeContents():
1403    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicy.describeContents()
1404UnflaggedApi: android.car.hardware.power.CarPowerPolicy#getDisabledComponents():
1405    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicy.getDisabledComponents()
1406UnflaggedApi: android.car.hardware.power.CarPowerPolicy#getEnabledComponents():
1407    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicy.getEnabledComponents()
1408UnflaggedApi: android.car.hardware.power.CarPowerPolicy#getPolicyId():
1409    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicy.getPolicyId()
1410UnflaggedApi: android.car.hardware.power.CarPowerPolicy#isComponentEnabled(int):
1411    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicy.isComponentEnabled(int)
1412UnflaggedApi: android.car.hardware.power.CarPowerPolicy#writeToParcel(android.os.Parcel, int):
1413    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicy.writeToParcel(android.os.Parcel,int)
1414UnflaggedApi: android.car.hardware.power.CarPowerPolicyFilter:
1415    New API must be flagged with @FlaggedApi: class android.car.hardware.power.CarPowerPolicyFilter
1416UnflaggedApi: android.car.hardware.power.CarPowerPolicyFilter#CREATOR:
1417    New API must be flagged with @FlaggedApi: field android.car.hardware.power.CarPowerPolicyFilter.CREATOR
1418UnflaggedApi: android.car.hardware.power.CarPowerPolicyFilter#describeContents():
1419    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicyFilter.describeContents()
1420UnflaggedApi: android.car.hardware.power.CarPowerPolicyFilter#getComponents():
1421    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicyFilter.getComponents()
1422UnflaggedApi: android.car.hardware.power.CarPowerPolicyFilter#writeToParcel(android.os.Parcel, int):
1423    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicyFilter.writeToParcel(android.os.Parcel,int)
1424UnflaggedApi: android.car.hardware.power.CarPowerPolicyFilter.Builder:
1425    New API must be flagged with @FlaggedApi: class android.car.hardware.power.CarPowerPolicyFilter.Builder
1426UnflaggedApi: android.car.hardware.power.CarPowerPolicyFilter.Builder#Builder():
1427    New API must be flagged with @FlaggedApi: constructor android.car.hardware.power.CarPowerPolicyFilter.Builder()
1428UnflaggedApi: android.car.hardware.power.CarPowerPolicyFilter.Builder#build():
1429    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicyFilter.Builder.build()
1430UnflaggedApi: android.car.hardware.power.CarPowerPolicyFilter.Builder#setComponents(int...):
1431    New API must be flagged with @FlaggedApi: method android.car.hardware.power.CarPowerPolicyFilter.Builder.setComponents(int...)
1432UnflaggedApi: android.car.hardware.power.PowerComponent:
1433    New API must be flagged with @FlaggedApi: class android.car.hardware.power.PowerComponent
1434UnflaggedApi: android.car.hardware.power.PowerComponent#AUDIO:
1435    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.AUDIO
1436UnflaggedApi: android.car.hardware.power.PowerComponent#BLUETOOTH:
1437    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.BLUETOOTH
1438UnflaggedApi: android.car.hardware.power.PowerComponent#CELLULAR:
1439    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.CELLULAR
1440UnflaggedApi: android.car.hardware.power.PowerComponent#CPU:
1441    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.CPU
1442UnflaggedApi: android.car.hardware.power.PowerComponent#DISPLAY:
1443    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.DISPLAY
1444UnflaggedApi: android.car.hardware.power.PowerComponent#ETHERNET:
1445    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.ETHERNET
1446UnflaggedApi: android.car.hardware.power.PowerComponent#INPUT:
1447    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.INPUT
1448UnflaggedApi: android.car.hardware.power.PowerComponent#LOCATION:
1449    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.LOCATION
1450UnflaggedApi: android.car.hardware.power.PowerComponent#MEDIA:
1451    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.MEDIA
1452UnflaggedApi: android.car.hardware.power.PowerComponent#MICROPHONE:
1453    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.MICROPHONE
1454UnflaggedApi: android.car.hardware.power.PowerComponent#MINIMUM_CUSTOM_COMPONENT_VALUE:
1455    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.MINIMUM_CUSTOM_COMPONENT_VALUE
1456UnflaggedApi: android.car.hardware.power.PowerComponent#NFC:
1457    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.NFC
1458UnflaggedApi: android.car.hardware.power.PowerComponent#PROJECTION:
1459    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.PROJECTION
1460UnflaggedApi: android.car.hardware.power.PowerComponent#TRUSTED_DEVICE_DETECTION:
1461    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.TRUSTED_DEVICE_DETECTION
1462UnflaggedApi: android.car.hardware.power.PowerComponent#VISUAL_INTERACTION:
1463    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.VISUAL_INTERACTION
1464UnflaggedApi: android.car.hardware.power.PowerComponent#VOICE_INTERACTION:
1465    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.VOICE_INTERACTION
1466UnflaggedApi: android.car.hardware.power.PowerComponent#WIFI:
1467    New API must be flagged with @FlaggedApi: field android.car.hardware.power.PowerComponent.WIFI
1468UnflaggedApi: android.car.hardware.property.AreaIdConfig:
1469    New API must be flagged with @FlaggedApi: class android.car.hardware.property.AreaIdConfig
1470UnflaggedApi: android.car.hardware.property.AreaIdConfig#CREATOR:
1471    New API must be flagged with @FlaggedApi: field android.car.hardware.property.AreaIdConfig.CREATOR
1472UnflaggedApi: android.car.hardware.property.AreaIdConfig#describeContents():
1473    New API must be flagged with @FlaggedApi: method android.car.hardware.property.AreaIdConfig.describeContents()
1474UnflaggedApi: android.car.hardware.property.AreaIdConfig#getAreaId():
1475    New API must be flagged with @FlaggedApi: method android.car.hardware.property.AreaIdConfig.getAreaId()
1476UnflaggedApi: android.car.hardware.property.AreaIdConfig#getMaxValue():
1477    New API must be flagged with @FlaggedApi: method android.car.hardware.property.AreaIdConfig.getMaxValue()
1478UnflaggedApi: android.car.hardware.property.AreaIdConfig#getMinValue():
1479    New API must be flagged with @FlaggedApi: method android.car.hardware.property.AreaIdConfig.getMinValue()
1480UnflaggedApi: android.car.hardware.property.AreaIdConfig#getSupportedEnumValues():
1481    New API must be flagged with @FlaggedApi: method android.car.hardware.property.AreaIdConfig.getSupportedEnumValues()
1482UnflaggedApi: android.car.hardware.property.AreaIdConfig#writeToParcel(android.os.Parcel, int):
1483    New API must be flagged with @FlaggedApi: method android.car.hardware.property.AreaIdConfig.writeToParcel(android.os.Parcel,int)
1484UnflaggedApi: android.car.hardware.property.CarInternalErrorException:
1485    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarInternalErrorException
1486UnflaggedApi: android.car.hardware.property.CarPropertyManager:
1487    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertyManager
1488UnflaggedApi: android.car.hardware.property.CarPropertyManager#ASYNC_GET_DEFAULT_TIMEOUT_MS:
1489    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.ASYNC_GET_DEFAULT_TIMEOUT_MS
1490UnflaggedApi: android.car.hardware.property.CarPropertyManager#CAR_SET_PROPERTY_ERROR_CODE_ACCESS_DENIED:
1491    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.CAR_SET_PROPERTY_ERROR_CODE_ACCESS_DENIED
1492UnflaggedApi: android.car.hardware.property.CarPropertyManager#CAR_SET_PROPERTY_ERROR_CODE_INVALID_ARG:
1493    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.CAR_SET_PROPERTY_ERROR_CODE_INVALID_ARG
1494UnflaggedApi: android.car.hardware.property.CarPropertyManager#CAR_SET_PROPERTY_ERROR_CODE_PROPERTY_NOT_AVAILABLE:
1495    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.CAR_SET_PROPERTY_ERROR_CODE_PROPERTY_NOT_AVAILABLE
1496UnflaggedApi: android.car.hardware.property.CarPropertyManager#CAR_SET_PROPERTY_ERROR_CODE_TRY_AGAIN:
1497    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.CAR_SET_PROPERTY_ERROR_CODE_TRY_AGAIN
1498UnflaggedApi: android.car.hardware.property.CarPropertyManager#CAR_SET_PROPERTY_ERROR_CODE_UNKNOWN:
1499    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.CAR_SET_PROPERTY_ERROR_CODE_UNKNOWN
1500UnflaggedApi: android.car.hardware.property.CarPropertyManager#SENSOR_RATE_FAST:
1501    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.SENSOR_RATE_FAST
1502UnflaggedApi: android.car.hardware.property.CarPropertyManager#SENSOR_RATE_FASTEST:
1503    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.SENSOR_RATE_FASTEST
1504UnflaggedApi: android.car.hardware.property.CarPropertyManager#SENSOR_RATE_NORMAL:
1505    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.SENSOR_RATE_NORMAL
1506UnflaggedApi: android.car.hardware.property.CarPropertyManager#SENSOR_RATE_ONCHANGE:
1507    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.SENSOR_RATE_ONCHANGE
1508UnflaggedApi: android.car.hardware.property.CarPropertyManager#SENSOR_RATE_UI:
1509    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.SENSOR_RATE_UI
1510UnflaggedApi: android.car.hardware.property.CarPropertyManager#STATUS_ERROR_INTERNAL_ERROR:
1511    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.STATUS_ERROR_INTERNAL_ERROR
1512UnflaggedApi: android.car.hardware.property.CarPropertyManager#STATUS_ERROR_NOT_AVAILABLE:
1513    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.STATUS_ERROR_NOT_AVAILABLE
1514UnflaggedApi: android.car.hardware.property.CarPropertyManager#STATUS_ERROR_TIMEOUT:
1515    New API must be flagged with @FlaggedApi: field android.car.hardware.property.CarPropertyManager.STATUS_ERROR_TIMEOUT
1516UnflaggedApi: android.car.hardware.property.CarPropertyManager#generateGetPropertyRequest(int, int):
1517    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.generateGetPropertyRequest(int,int)
1518UnflaggedApi: android.car.hardware.property.CarPropertyManager#generateSetPropertyRequest(int, int, T):
1519    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.generateSetPropertyRequest(int,int,T)
1520UnflaggedApi: android.car.hardware.property.CarPropertyManager#getAreaId(int, int):
1521    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getAreaId(int,int)
1522UnflaggedApi: android.car.hardware.property.CarPropertyManager#getBooleanProperty(int, int):
1523    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getBooleanProperty(int,int)
1524UnflaggedApi: android.car.hardware.property.CarPropertyManager#getCarPropertyConfig(int):
1525    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getCarPropertyConfig(int)
1526UnflaggedApi: android.car.hardware.property.CarPropertyManager#getFloatProperty(int, int):
1527    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getFloatProperty(int,int)
1528UnflaggedApi: android.car.hardware.property.CarPropertyManager#getIntArrayProperty(int, int):
1529    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getIntArrayProperty(int,int)
1530UnflaggedApi: android.car.hardware.property.CarPropertyManager#getIntProperty(int, int):
1531    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getIntProperty(int,int)
1532UnflaggedApi: android.car.hardware.property.CarPropertyManager#getPropertiesAsync(java.util.List<android.car.hardware.property.CarPropertyManager.GetPropertyRequest>, android.os.CancellationSignal, java.util.concurrent.Executor, android.car.hardware.property.CarPropertyManager.GetPropertyCallback):
1533    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getPropertiesAsync(java.util.List<android.car.hardware.property.CarPropertyManager.GetPropertyRequest>,android.os.CancellationSignal,java.util.concurrent.Executor,android.car.hardware.property.CarPropertyManager.GetPropertyCallback)
1534UnflaggedApi: android.car.hardware.property.CarPropertyManager#getPropertiesAsync(java.util.List<android.car.hardware.property.CarPropertyManager.GetPropertyRequest>, long, android.os.CancellationSignal, java.util.concurrent.Executor, android.car.hardware.property.CarPropertyManager.GetPropertyCallback):
1535    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getPropertiesAsync(java.util.List<android.car.hardware.property.CarPropertyManager.GetPropertyRequest>,long,android.os.CancellationSignal,java.util.concurrent.Executor,android.car.hardware.property.CarPropertyManager.GetPropertyCallback)
1536UnflaggedApi: android.car.hardware.property.CarPropertyManager#getProperty(Class<E>, int, int):
1537    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getProperty(Class<E>,int,int)
1538UnflaggedApi: android.car.hardware.property.CarPropertyManager#getProperty(int, int):
1539    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getProperty(int,int)
1540UnflaggedApi: android.car.hardware.property.CarPropertyManager#getPropertyList():
1541    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getPropertyList()
1542UnflaggedApi: android.car.hardware.property.CarPropertyManager#getPropertyList(android.util.ArraySet<java.lang.Integer>):
1543    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.getPropertyList(android.util.ArraySet<java.lang.Integer>)
1544UnflaggedApi: android.car.hardware.property.CarPropertyManager#isPropertyAvailable(int, int):
1545    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.isPropertyAvailable(int,int)
1546UnflaggedApi: android.car.hardware.property.CarPropertyManager#registerCallback(android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback, int, float):
1547    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.registerCallback(android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback,int,float)
1548UnflaggedApi: android.car.hardware.property.CarPropertyManager#setBooleanProperty(int, int, boolean):
1549    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.setBooleanProperty(int,int,boolean)
1550UnflaggedApi: android.car.hardware.property.CarPropertyManager#setFloatProperty(int, int, float):
1551    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.setFloatProperty(int,int,float)
1552UnflaggedApi: android.car.hardware.property.CarPropertyManager#setIntProperty(int, int, int):
1553    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.setIntProperty(int,int,int)
1554UnflaggedApi: android.car.hardware.property.CarPropertyManager#setPropertiesAsync(java.util.List<android.car.hardware.property.CarPropertyManager.SetPropertyRequest<?>>, android.os.CancellationSignal, java.util.concurrent.Executor, android.car.hardware.property.CarPropertyManager.SetPropertyCallback):
1555    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.setPropertiesAsync(java.util.List<android.car.hardware.property.CarPropertyManager.SetPropertyRequest<?>>,android.os.CancellationSignal,java.util.concurrent.Executor,android.car.hardware.property.CarPropertyManager.SetPropertyCallback)
1556UnflaggedApi: android.car.hardware.property.CarPropertyManager#setPropertiesAsync(java.util.List<android.car.hardware.property.CarPropertyManager.SetPropertyRequest<?>>, long, android.os.CancellationSignal, java.util.concurrent.Executor, android.car.hardware.property.CarPropertyManager.SetPropertyCallback):
1557    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.setPropertiesAsync(java.util.List<android.car.hardware.property.CarPropertyManager.SetPropertyRequest<?>>,long,android.os.CancellationSignal,java.util.concurrent.Executor,android.car.hardware.property.CarPropertyManager.SetPropertyCallback)
1558UnflaggedApi: android.car.hardware.property.CarPropertyManager#setProperty(Class<E>, int, int, E):
1559    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.setProperty(Class<E>,int,int,E)
1560UnflaggedApi: android.car.hardware.property.CarPropertyManager#subscribePropertyEvents(java.util.List<android.car.hardware.property.SubscribeOption>, java.util.concurrent.Executor, android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback):
1561    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.subscribePropertyEvents(java.util.List<android.car.hardware.property.SubscribeOption>,java.util.concurrent.Executor,android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback)
1562UnflaggedApi: android.car.hardware.property.CarPropertyManager#unregisterCallback(android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback):
1563    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.unregisterCallback(android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback)
1564UnflaggedApi: android.car.hardware.property.CarPropertyManager#unregisterCallback(android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback, int):
1565    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.unregisterCallback(android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback,int)
1566UnflaggedApi: android.car.hardware.property.CarPropertyManager.AsyncPropertyRequest:
1567    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertyManager.AsyncPropertyRequest
1568UnflaggedApi: android.car.hardware.property.CarPropertyManager.AsyncPropertyRequest#getAreaId():
1569    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.AsyncPropertyRequest.getAreaId()
1570UnflaggedApi: android.car.hardware.property.CarPropertyManager.AsyncPropertyRequest#getPropertyId():
1571    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.AsyncPropertyRequest.getPropertyId()
1572UnflaggedApi: android.car.hardware.property.CarPropertyManager.AsyncPropertyRequest#getRequestId():
1573    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.AsyncPropertyRequest.getRequestId()
1574UnflaggedApi: android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback:
1575    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback
1576UnflaggedApi: android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback#onChangeEvent(android.car.hardware.CarPropertyValue):
1577    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback.onChangeEvent(android.car.hardware.CarPropertyValue)
1578UnflaggedApi: android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback#onErrorEvent(int, int):
1579    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback.onErrorEvent(int,int)
1580UnflaggedApi: android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback#onErrorEvent(int, int, int):
1581    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.CarPropertyEventCallback.onErrorEvent(int,int,int)
1582UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyCallback:
1583    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertyManager.GetPropertyCallback
1584UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyCallback#onFailure(android.car.hardware.property.CarPropertyManager.PropertyAsyncError):
1585    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.GetPropertyCallback.onFailure(android.car.hardware.property.CarPropertyManager.PropertyAsyncError)
1586UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyCallback#onSuccess(android.car.hardware.property.CarPropertyManager.GetPropertyResult<?>):
1587    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.GetPropertyCallback.onSuccess(android.car.hardware.property.CarPropertyManager.GetPropertyResult<?>)
1588UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyRequest:
1589    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertyManager.GetPropertyRequest
1590UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyRequest#getAreaId():
1591    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.GetPropertyRequest.getAreaId()
1592UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyRequest#getPropertyId():
1593    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.GetPropertyRequest.getPropertyId()
1594UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyRequest#getRequestId():
1595    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.GetPropertyRequest.getRequestId()
1596UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyResult:
1597    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertyManager.GetPropertyResult
1598UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyResult#getAreaId():
1599    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.GetPropertyResult.getAreaId()
1600UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyResult#getPropertyId():
1601    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.GetPropertyResult.getPropertyId()
1602UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyResult#getRequestId():
1603    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.GetPropertyResult.getRequestId()
1604UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyResult#getTimestampNanos():
1605    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.GetPropertyResult.getTimestampNanos()
1606UnflaggedApi: android.car.hardware.property.CarPropertyManager.GetPropertyResult#getValue():
1607    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.GetPropertyResult.getValue()
1608UnflaggedApi: android.car.hardware.property.CarPropertyManager.PropertyAsyncError:
1609    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertyManager.PropertyAsyncError
1610UnflaggedApi: android.car.hardware.property.CarPropertyManager.PropertyAsyncError#getAreaId():
1611    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.PropertyAsyncError.getAreaId()
1612UnflaggedApi: android.car.hardware.property.CarPropertyManager.PropertyAsyncError#getErrorCode():
1613    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.PropertyAsyncError.getErrorCode()
1614UnflaggedApi: android.car.hardware.property.CarPropertyManager.PropertyAsyncError#getPropertyId():
1615    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.PropertyAsyncError.getPropertyId()
1616UnflaggedApi: android.car.hardware.property.CarPropertyManager.PropertyAsyncError#getRequestId():
1617    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.PropertyAsyncError.getRequestId()
1618UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyCallback:
1619    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertyManager.SetPropertyCallback
1620UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyCallback#onFailure(android.car.hardware.property.CarPropertyManager.PropertyAsyncError):
1621    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyCallback.onFailure(android.car.hardware.property.CarPropertyManager.PropertyAsyncError)
1622UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyCallback#onSuccess(android.car.hardware.property.CarPropertyManager.SetPropertyResult):
1623    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyCallback.onSuccess(android.car.hardware.property.CarPropertyManager.SetPropertyResult)
1624UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyRequest:
1625    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertyManager.SetPropertyRequest
1626UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyRequest#getAreaId():
1627    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyRequest.getAreaId()
1628UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyRequest#getPropertyId():
1629    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyRequest.getPropertyId()
1630UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyRequest#getRequestId():
1631    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyRequest.getRequestId()
1632UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyRequest#getUpdateRateHz():
1633    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyRequest.getUpdateRateHz()
1634UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyRequest#getValue():
1635    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyRequest.getValue()
1636UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyRequest#isWaitForPropertyUpdate():
1637    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyRequest.isWaitForPropertyUpdate()
1638UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyRequest#setUpdateRateHz(float):
1639    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyRequest.setUpdateRateHz(float)
1640UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyRequest#setWaitForPropertyUpdate(boolean):
1641    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyRequest.setWaitForPropertyUpdate(boolean)
1642UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyResult:
1643    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertyManager.SetPropertyResult
1644UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyResult#getAreaId():
1645    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyResult.getAreaId()
1646UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyResult#getPropertyId():
1647    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyResult.getPropertyId()
1648UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyResult#getRequestId():
1649    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyResult.getRequestId()
1650UnflaggedApi: android.car.hardware.property.CarPropertyManager.SetPropertyResult#getUpdateTimestampNanos():
1651    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertyManager.SetPropertyResult.getUpdateTimestampNanos()
1652UnflaggedApi: android.car.hardware.property.CarPropertySimulationManager:
1653    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertySimulationManager
1654UnflaggedApi: android.car.hardware.property.CarPropertySimulationManager#onCarDisconnected():
1655    New API must be flagged with @FlaggedApi: method android.car.hardware.property.CarPropertySimulationManager.onCarDisconnected()
1656UnflaggedApi: android.car.hardware.property.CarPropertySimulationManager.CarRecorderListener:
1657    New API must be flagged with @FlaggedApi: class android.car.hardware.property.CarPropertySimulationManager.CarRecorderListener
1658UnflaggedApi: android.car.hardware.property.EvChargeState:
1659    New API must be flagged with @FlaggedApi: class android.car.hardware.property.EvChargeState
1660UnflaggedApi: android.car.hardware.property.EvChargeState#STATE_CHARGING:
1661    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargeState.STATE_CHARGING
1662UnflaggedApi: android.car.hardware.property.EvChargeState#STATE_ERROR:
1663    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargeState.STATE_ERROR
1664UnflaggedApi: android.car.hardware.property.EvChargeState#STATE_FULLY_CHARGED:
1665    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargeState.STATE_FULLY_CHARGED
1666UnflaggedApi: android.car.hardware.property.EvChargeState#STATE_NOT_CHARGING:
1667    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargeState.STATE_NOT_CHARGING
1668UnflaggedApi: android.car.hardware.property.EvChargeState#STATE_UNKNOWN:
1669    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargeState.STATE_UNKNOWN
1670UnflaggedApi: android.car.hardware.property.EvChargeState#toString(int):
1671    New API must be flagged with @FlaggedApi: method android.car.hardware.property.EvChargeState.toString(int)
1672UnflaggedApi: android.car.hardware.property.EvChargingConnectorType:
1673    New API must be flagged with @FlaggedApi: class android.car.hardware.property.EvChargingConnectorType
1674UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#GBT_AC:
1675    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.GBT_AC
1676UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#GBT_DC:
1677    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.GBT_DC
1678UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#IEC_TYPE_1_AC:
1679    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.IEC_TYPE_1_AC
1680UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#IEC_TYPE_1_CCS_DC:
1681    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.IEC_TYPE_1_CCS_DC
1682UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#IEC_TYPE_2_AC:
1683    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.IEC_TYPE_2_AC
1684UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#IEC_TYPE_2_CCS_DC:
1685    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.IEC_TYPE_2_CCS_DC
1686UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#IEC_TYPE_3_AC:
1687    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.IEC_TYPE_3_AC
1688UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#IEC_TYPE_4_DC:
1689    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.IEC_TYPE_4_DC
1690UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#OTHER:
1691    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.OTHER
1692UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#TESLA_HPWC:
1693    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.TESLA_HPWC
1694UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#TESLA_ROADSTER:
1695    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.TESLA_ROADSTER
1696UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#TESLA_SUPERCHARGER:
1697    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.TESLA_SUPERCHARGER
1698UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#UNKNOWN:
1699    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvChargingConnectorType.UNKNOWN
1700UnflaggedApi: android.car.hardware.property.EvChargingConnectorType#toString(int):
1701    New API must be flagged with @FlaggedApi: method android.car.hardware.property.EvChargingConnectorType.toString(int)
1702UnflaggedApi: android.car.hardware.property.EvRegenerativeBrakingState:
1703    New API must be flagged with @FlaggedApi: class android.car.hardware.property.EvRegenerativeBrakingState
1704UnflaggedApi: android.car.hardware.property.EvRegenerativeBrakingState#STATE_DISABLED:
1705    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvRegenerativeBrakingState.STATE_DISABLED
1706UnflaggedApi: android.car.hardware.property.EvRegenerativeBrakingState#STATE_FULLY_ENABLED:
1707    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvRegenerativeBrakingState.STATE_FULLY_ENABLED
1708UnflaggedApi: android.car.hardware.property.EvRegenerativeBrakingState#STATE_PARTIALLY_ENABLED:
1709    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvRegenerativeBrakingState.STATE_PARTIALLY_ENABLED
1710UnflaggedApi: android.car.hardware.property.EvRegenerativeBrakingState#STATE_UNKNOWN:
1711    New API must be flagged with @FlaggedApi: field android.car.hardware.property.EvRegenerativeBrakingState.STATE_UNKNOWN
1712UnflaggedApi: android.car.hardware.property.EvRegenerativeBrakingState#toString(int):
1713    New API must be flagged with @FlaggedApi: method android.car.hardware.property.EvRegenerativeBrakingState.toString(int)
1714UnflaggedApi: android.car.hardware.property.LocationCharacterization:
1715    New API must be flagged with @FlaggedApi: class android.car.hardware.property.LocationCharacterization
1716UnflaggedApi: android.car.hardware.property.LocationCharacterization#ACCELEROMETER_FUSION:
1717    New API must be flagged with @FlaggedApi: field android.car.hardware.property.LocationCharacterization.ACCELEROMETER_FUSION
1718UnflaggedApi: android.car.hardware.property.LocationCharacterization#CAR_SPEED_FUSION:
1719    New API must be flagged with @FlaggedApi: field android.car.hardware.property.LocationCharacterization.CAR_SPEED_FUSION
1720UnflaggedApi: android.car.hardware.property.LocationCharacterization#COMPASS_FUSION:
1721    New API must be flagged with @FlaggedApi: field android.car.hardware.property.LocationCharacterization.COMPASS_FUSION
1722UnflaggedApi: android.car.hardware.property.LocationCharacterization#DEAD_RECKONED:
1723    New API must be flagged with @FlaggedApi: field android.car.hardware.property.LocationCharacterization.DEAD_RECKONED
1724UnflaggedApi: android.car.hardware.property.LocationCharacterization#GYROSCOPE_FUSION:
1725    New API must be flagged with @FlaggedApi: field android.car.hardware.property.LocationCharacterization.GYROSCOPE_FUSION
1726UnflaggedApi: android.car.hardware.property.LocationCharacterization#PRIOR_LOCATIONS:
1727    New API must be flagged with @FlaggedApi: field android.car.hardware.property.LocationCharacterization.PRIOR_LOCATIONS
1728UnflaggedApi: android.car.hardware.property.LocationCharacterization#RAW_GNSS_ONLY:
1729    New API must be flagged with @FlaggedApi: field android.car.hardware.property.LocationCharacterization.RAW_GNSS_ONLY
1730UnflaggedApi: android.car.hardware.property.LocationCharacterization#STEERING_ANGLE_FUSION:
1731    New API must be flagged with @FlaggedApi: field android.car.hardware.property.LocationCharacterization.STEERING_ANGLE_FUSION
1732UnflaggedApi: android.car.hardware.property.LocationCharacterization#WHEEL_SPEED_FUSION:
1733    New API must be flagged with @FlaggedApi: field android.car.hardware.property.LocationCharacterization.WHEEL_SPEED_FUSION
1734UnflaggedApi: android.car.hardware.property.LocationCharacterization#toString(int):
1735    New API must be flagged with @FlaggedApi: method android.car.hardware.property.LocationCharacterization.toString(int)
1736UnflaggedApi: android.car.hardware.property.PropertyAccessDeniedSecurityException:
1737    New API must be flagged with @FlaggedApi: class android.car.hardware.property.PropertyAccessDeniedSecurityException
1738UnflaggedApi: android.car.hardware.property.PropertyNotAvailableAndRetryException:
1739    New API must be flagged with @FlaggedApi: class android.car.hardware.property.PropertyNotAvailableAndRetryException
1740UnflaggedApi: android.car.hardware.property.PropertyNotAvailableErrorCode:
1741    New API must be flagged with @FlaggedApi: class android.car.hardware.property.PropertyNotAvailableErrorCode
1742UnflaggedApi: android.car.hardware.property.PropertyNotAvailableErrorCode#NOT_AVAILABLE:
1743    New API must be flagged with @FlaggedApi: field android.car.hardware.property.PropertyNotAvailableErrorCode.NOT_AVAILABLE
1744UnflaggedApi: android.car.hardware.property.PropertyNotAvailableErrorCode#NOT_AVAILABLE_DISABLED:
1745    New API must be flagged with @FlaggedApi: field android.car.hardware.property.PropertyNotAvailableErrorCode.NOT_AVAILABLE_DISABLED
1746UnflaggedApi: android.car.hardware.property.PropertyNotAvailableErrorCode#NOT_AVAILABLE_POOR_VISIBILITY:
1747    New API must be flagged with @FlaggedApi: field android.car.hardware.property.PropertyNotAvailableErrorCode.NOT_AVAILABLE_POOR_VISIBILITY
1748UnflaggedApi: android.car.hardware.property.PropertyNotAvailableErrorCode#NOT_AVAILABLE_SAFETY:
1749    New API must be flagged with @FlaggedApi: field android.car.hardware.property.PropertyNotAvailableErrorCode.NOT_AVAILABLE_SAFETY
1750UnflaggedApi: android.car.hardware.property.PropertyNotAvailableErrorCode#NOT_AVAILABLE_SPEED_HIGH:
1751    New API must be flagged with @FlaggedApi: field android.car.hardware.property.PropertyNotAvailableErrorCode.NOT_AVAILABLE_SPEED_HIGH
1752UnflaggedApi: android.car.hardware.property.PropertyNotAvailableErrorCode#NOT_AVAILABLE_SPEED_LOW:
1753    New API must be flagged with @FlaggedApi: field android.car.hardware.property.PropertyNotAvailableErrorCode.NOT_AVAILABLE_SPEED_LOW
1754UnflaggedApi: android.car.hardware.property.PropertyNotAvailableErrorCode#toString(int):
1755    New API must be flagged with @FlaggedApi: method android.car.hardware.property.PropertyNotAvailableErrorCode.toString(int)
1756UnflaggedApi: android.car.hardware.property.PropertyNotAvailableException:
1757    New API must be flagged with @FlaggedApi: class android.car.hardware.property.PropertyNotAvailableException
1758UnflaggedApi: android.car.hardware.property.PropertyNotAvailableException#getDetailedErrorCode():
1759    New API must be flagged with @FlaggedApi: method android.car.hardware.property.PropertyNotAvailableException.getDetailedErrorCode()
1760UnflaggedApi: android.car.hardware.property.SubscribeOption:
1761    New API must be flagged with @FlaggedApi: class android.car.hardware.property.SubscribeOption
1762UnflaggedApi: android.car.hardware.property.SubscribeOption#getAreaIds():
1763    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.getAreaIds()
1764UnflaggedApi: android.car.hardware.property.SubscribeOption#getPropertyId():
1765    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.getPropertyId()
1766UnflaggedApi: android.car.hardware.property.SubscribeOption#getUpdateRateFast():
1767    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.getUpdateRateFast()
1768UnflaggedApi: android.car.hardware.property.SubscribeOption#getUpdateRateFastest():
1769    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.getUpdateRateFastest()
1770UnflaggedApi: android.car.hardware.property.SubscribeOption#getUpdateRateHz():
1771    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.getUpdateRateHz()
1772UnflaggedApi: android.car.hardware.property.SubscribeOption#getUpdateRateNormal():
1773    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.getUpdateRateNormal()
1774UnflaggedApi: android.car.hardware.property.SubscribeOption#getUpdateRateUi():
1775    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.getUpdateRateUi()
1776UnflaggedApi: android.car.hardware.property.SubscribeOption.Builder:
1777    New API must be flagged with @FlaggedApi: class android.car.hardware.property.SubscribeOption.Builder
1778UnflaggedApi: android.car.hardware.property.SubscribeOption.Builder#Builder(int):
1779    New API must be flagged with @FlaggedApi: constructor android.car.hardware.property.SubscribeOption.Builder(int)
1780UnflaggedApi: android.car.hardware.property.SubscribeOption.Builder#addAreaId(int):
1781    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.Builder.addAreaId(int)
1782UnflaggedApi: android.car.hardware.property.SubscribeOption.Builder#build():
1783    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.Builder.build()
1784UnflaggedApi: android.car.hardware.property.SubscribeOption.Builder#setUpdateRateFast():
1785    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.Builder.setUpdateRateFast()
1786UnflaggedApi: android.car.hardware.property.SubscribeOption.Builder#setUpdateRateFastest():
1787    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.Builder.setUpdateRateFastest()
1788UnflaggedApi: android.car.hardware.property.SubscribeOption.Builder#setUpdateRateHz(float):
1789    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.Builder.setUpdateRateHz(float)
1790UnflaggedApi: android.car.hardware.property.SubscribeOption.Builder#setUpdateRateNormal():
1791    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.Builder.setUpdateRateNormal()
1792UnflaggedApi: android.car.hardware.property.SubscribeOption.Builder#setUpdateRateUi():
1793    New API must be flagged with @FlaggedApi: method android.car.hardware.property.SubscribeOption.Builder.setUpdateRateUi()
1794UnflaggedApi: android.car.hardware.property.VehicleElectronicTollCollectionCardStatus:
1795    New API must be flagged with @FlaggedApi: class android.car.hardware.property.VehicleElectronicTollCollectionCardStatus
1796UnflaggedApi: android.car.hardware.property.VehicleElectronicTollCollectionCardStatus#ELECTRONIC_TOLL_COLLECTION_CARD_INVALID:
1797    New API must be flagged with @FlaggedApi: field android.car.hardware.property.VehicleElectronicTollCollectionCardStatus.ELECTRONIC_TOLL_COLLECTION_CARD_INVALID
1798UnflaggedApi: android.car.hardware.property.VehicleElectronicTollCollectionCardStatus#ELECTRONIC_TOLL_COLLECTION_CARD_NOT_INSERTED:
1799    New API must be flagged with @FlaggedApi: field android.car.hardware.property.VehicleElectronicTollCollectionCardStatus.ELECTRONIC_TOLL_COLLECTION_CARD_NOT_INSERTED
1800UnflaggedApi: android.car.hardware.property.VehicleElectronicTollCollectionCardStatus#ELECTRONIC_TOLL_COLLECTION_CARD_VALID:
1801    New API must be flagged with @FlaggedApi: field android.car.hardware.property.VehicleElectronicTollCollectionCardStatus.ELECTRONIC_TOLL_COLLECTION_CARD_VALID
1802UnflaggedApi: android.car.hardware.property.VehicleElectronicTollCollectionCardStatus#UNKNOWN:
1803    New API must be flagged with @FlaggedApi: field android.car.hardware.property.VehicleElectronicTollCollectionCardStatus.UNKNOWN
1804UnflaggedApi: android.car.hardware.property.VehicleElectronicTollCollectionCardType:
1805    New API must be flagged with @FlaggedApi: class android.car.hardware.property.VehicleElectronicTollCollectionCardType
1806UnflaggedApi: android.car.hardware.property.VehicleElectronicTollCollectionCardType#JP_ELECTRONIC_TOLL_COLLECTION_CARD:
1807    New API must be flagged with @FlaggedApi: field android.car.hardware.property.VehicleElectronicTollCollectionCardType.JP_ELECTRONIC_TOLL_COLLECTION_CARD
1808UnflaggedApi: android.car.hardware.property.VehicleElectronicTollCollectionCardType#JP_ELECTRONIC_TOLL_COLLECTION_CARD_V2:
1809    New API must be flagged with @FlaggedApi: field android.car.hardware.property.VehicleElectronicTollCollectionCardType.JP_ELECTRONIC_TOLL_COLLECTION_CARD_V2
1810UnflaggedApi: android.car.hardware.property.VehicleElectronicTollCollectionCardType#UNKNOWN:
1811    New API must be flagged with @FlaggedApi: field android.car.hardware.property.VehicleElectronicTollCollectionCardType.UNKNOWN
1812UnflaggedApi: android.car.input.CarInputManager:
1813    New API must be flagged with @FlaggedApi: class android.car.input.CarInputManager
1814UnflaggedApi: android.car.input.CarInputManager#INPUT_TYPE_CUSTOM_INPUT_EVENT:
1815    New API must be flagged with @FlaggedApi: field android.car.input.CarInputManager.INPUT_TYPE_CUSTOM_INPUT_EVENT
1816UnflaggedApi: android.car.input.CarInputManager#INPUT_TYPE_DPAD_KEYS:
1817    New API must be flagged with @FlaggedApi: field android.car.input.CarInputManager.INPUT_TYPE_DPAD_KEYS
1818UnflaggedApi: android.car.input.CarInputManager#INPUT_TYPE_NAVIGATE_KEYS:
1819    New API must be flagged with @FlaggedApi: field android.car.input.CarInputManager.INPUT_TYPE_NAVIGATE_KEYS
1820UnflaggedApi: android.car.input.CarInputManager#INPUT_TYPE_NONE:
1821    New API must be flagged with @FlaggedApi: field android.car.input.CarInputManager.INPUT_TYPE_NONE
1822UnflaggedApi: android.car.input.CarInputManager#INPUT_TYPE_ROTARY_NAVIGATION:
1823    New API must be flagged with @FlaggedApi: field android.car.input.CarInputManager.INPUT_TYPE_ROTARY_NAVIGATION
1824UnflaggedApi: android.car.input.CarInputManager#INPUT_TYPE_ROTARY_VOLUME:
1825    New API must be flagged with @FlaggedApi: field android.car.input.CarInputManager.INPUT_TYPE_ROTARY_VOLUME
1826UnflaggedApi: android.car.input.CarInputManager#INPUT_TYPE_SYSTEM_NAVIGATE_KEYS:
1827    New API must be flagged with @FlaggedApi: field android.car.input.CarInputManager.INPUT_TYPE_SYSTEM_NAVIGATE_KEYS
1828UnflaggedApi: android.car.input.CarInputManager#INPUT_TYPE_TOUCH_SCREEN:
1829    New API must be flagged with @FlaggedApi: field android.car.input.CarInputManager.INPUT_TYPE_TOUCH_SCREEN
1830UnflaggedApi: android.car.media.CarAudioManager:
1831    New API must be flagged with @FlaggedApi: class android.car.media.CarAudioManager
1832UnflaggedApi: android.car.media.CarAudioManager#AUDIO_FEATURE_AUDIO_MIRRORING:
1833    New API must be flagged with @FlaggedApi: field android.car.media.CarAudioManager.AUDIO_FEATURE_AUDIO_MIRRORING
1834UnflaggedApi: android.car.media.CarAudioManager#AUDIO_FEATURE_DYNAMIC_ROUTING:
1835    New API must be flagged with @FlaggedApi: field android.car.media.CarAudioManager.AUDIO_FEATURE_DYNAMIC_ROUTING
1836UnflaggedApi: android.car.media.CarAudioManager#AUDIO_FEATURE_OEM_AUDIO_SERVICE:
1837    New API must be flagged with @FlaggedApi: field android.car.media.CarAudioManager.AUDIO_FEATURE_OEM_AUDIO_SERVICE
1838UnflaggedApi: android.car.media.CarAudioManager#AUDIO_FEATURE_VOLUME_GROUP_EVENTS:
1839    New API must be flagged with @FlaggedApi: field android.car.media.CarAudioManager.AUDIO_FEATURE_VOLUME_GROUP_EVENTS
1840UnflaggedApi: android.car.media.CarAudioManager#AUDIO_FEATURE_VOLUME_GROUP_MUTING:
1841    New API must be flagged with @FlaggedApi: field android.car.media.CarAudioManager.AUDIO_FEATURE_VOLUME_GROUP_MUTING
1842UnflaggedApi: android.car.media.CarAudioManager#isAudioFeatureEnabled(int):
1843    New API must be flagged with @FlaggedApi: method android.car.media.CarAudioManager.isAudioFeatureEnabled(int)
1844UnflaggedApi: android.car.media.CarAudioManager#registerCarVolumeCallback(android.car.media.CarAudioManager.CarVolumeCallback):
1845    New API must be flagged with @FlaggedApi: method android.car.media.CarAudioManager.registerCarVolumeCallback(android.car.media.CarAudioManager.CarVolumeCallback)
1846UnflaggedApi: android.car.media.CarAudioManager#unregisterCarVolumeCallback(android.car.media.CarAudioManager.CarVolumeCallback):
1847    New API must be flagged with @FlaggedApi: method android.car.media.CarAudioManager.unregisterCarVolumeCallback(android.car.media.CarAudioManager.CarVolumeCallback)
1848UnflaggedApi: android.car.media.CarAudioManager.CarVolumeCallback:
1849    New API must be flagged with @FlaggedApi: class android.car.media.CarAudioManager.CarVolumeCallback
1850UnflaggedApi: android.car.media.CarAudioManager.CarVolumeCallback#CarVolumeCallback():
1851    New API must be flagged with @FlaggedApi: constructor android.car.media.CarAudioManager.CarVolumeCallback()
1852UnflaggedApi: android.car.media.CarAudioManager.CarVolumeCallback#onGroupMuteChanged(int, int, int):
1853    New API must be flagged with @FlaggedApi: method android.car.media.CarAudioManager.CarVolumeCallback.onGroupMuteChanged(int,int,int)
1854UnflaggedApi: android.car.media.CarAudioManager.CarVolumeCallback#onGroupVolumeChanged(int, int, int):
1855    New API must be flagged with @FlaggedApi: method android.car.media.CarAudioManager.CarVolumeCallback.onGroupVolumeChanged(int,int,int)
1856UnflaggedApi: android.car.media.CarAudioManager.CarVolumeCallback#onMasterMuteChanged(int, int):
1857    New API must be flagged with @FlaggedApi: method android.car.media.CarAudioManager.CarVolumeCallback.onMasterMuteChanged(int,int)
1858UnflaggedApi: android.car.media.CarMediaIntents:
1859    New API must be flagged with @FlaggedApi: class android.car.media.CarMediaIntents
1860UnflaggedApi: android.car.media.CarMediaIntents#ACTION_MEDIA_TEMPLATE:
1861    New API must be flagged with @FlaggedApi: field android.car.media.CarMediaIntents.ACTION_MEDIA_TEMPLATE
1862UnflaggedApi: android.car.media.CarMediaIntents#EXTRA_MEDIA_COMPONENT:
1863    New API must be flagged with @FlaggedApi: field android.car.media.CarMediaIntents.EXTRA_MEDIA_COMPONENT
1864UnflaggedApi: android.car.media.CarMediaIntents#EXTRA_SEARCH_QUERY:
1865    New API must be flagged with @FlaggedApi: field android.car.media.CarMediaIntents.EXTRA_SEARCH_QUERY
1866UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager:
1867    New API must be flagged with @FlaggedApi: class android.car.remoteaccess.CarRemoteAccessManager
1868UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager#clearRemoteTaskClient():
1869    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.CarRemoteAccessManager.clearRemoteTaskClient()
1870UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager#reportRemoteTaskDone(String):
1871    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.CarRemoteAccessManager.reportRemoteTaskDone(String)
1872UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager#setRemoteTaskClient(java.util.concurrent.Executor, android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback):
1873    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.CarRemoteAccessManager.setRemoteTaskClient(java.util.concurrent.Executor,android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback)
1874UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager.CompletableRemoteTaskFuture:
1875    New API must be flagged with @FlaggedApi: class android.car.remoteaccess.CarRemoteAccessManager.CompletableRemoteTaskFuture
1876UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager.CompletableRemoteTaskFuture#complete():
1877    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.CarRemoteAccessManager.CompletableRemoteTaskFuture.complete()
1878UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback:
1879    New API must be flagged with @FlaggedApi: class android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback
1880UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback#onRegistrationFailed():
1881    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback.onRegistrationFailed()
1882UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback#onRegistrationUpdated(android.car.remoteaccess.RemoteTaskClientRegistrationInfo):
1883    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback.onRegistrationUpdated(android.car.remoteaccess.RemoteTaskClientRegistrationInfo)
1884UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback#onRemoteTaskRequested(String, byte[], int):
1885    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback.onRemoteTaskRequested(String,byte[],int)
1886UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback#onServerlessClientRegistered():
1887    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback.onServerlessClientRegistered()
1888UnflaggedApi: android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback#onShutdownStarting(android.car.remoteaccess.CarRemoteAccessManager.CompletableRemoteTaskFuture):
1889    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.CarRemoteAccessManager.RemoteTaskClientCallback.onShutdownStarting(android.car.remoteaccess.CarRemoteAccessManager.CompletableRemoteTaskFuture)
1890UnflaggedApi: android.car.remoteaccess.RemoteTaskClientRegistrationInfo:
1891    New API must be flagged with @FlaggedApi: class android.car.remoteaccess.RemoteTaskClientRegistrationInfo
1892UnflaggedApi: android.car.remoteaccess.RemoteTaskClientRegistrationInfo#CREATOR:
1893    New API must be flagged with @FlaggedApi: field android.car.remoteaccess.RemoteTaskClientRegistrationInfo.CREATOR
1894UnflaggedApi: android.car.remoteaccess.RemoteTaskClientRegistrationInfo#describeContents():
1895    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.RemoteTaskClientRegistrationInfo.describeContents()
1896UnflaggedApi: android.car.remoteaccess.RemoteTaskClientRegistrationInfo#getClientId():
1897    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.RemoteTaskClientRegistrationInfo.getClientId()
1898UnflaggedApi: android.car.remoteaccess.RemoteTaskClientRegistrationInfo#getProcessorId():
1899    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.RemoteTaskClientRegistrationInfo.getProcessorId()
1900UnflaggedApi: android.car.remoteaccess.RemoteTaskClientRegistrationInfo#getServiceId():
1901    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.RemoteTaskClientRegistrationInfo.getServiceId()
1902UnflaggedApi: android.car.remoteaccess.RemoteTaskClientRegistrationInfo#getVehicleId():
1903    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.RemoteTaskClientRegistrationInfo.getVehicleId()
1904UnflaggedApi: android.car.remoteaccess.RemoteTaskClientRegistrationInfo#writeToParcel(android.os.Parcel, int):
1905    New API must be flagged with @FlaggedApi: method android.car.remoteaccess.RemoteTaskClientRegistrationInfo.writeToParcel(android.os.Parcel,int)
1906UnflaggedApi: android.car.watchdog.CarWatchdogManager:
1907    New API must be flagged with @FlaggedApi: class android.car.watchdog.CarWatchdogManager
1908UnflaggedApi: android.car.watchdog.CarWatchdogManager#FLAG_RESOURCE_OVERUSE_IO:
1909    New API must be flagged with @FlaggedApi: field android.car.watchdog.CarWatchdogManager.FLAG_RESOURCE_OVERUSE_IO
1910UnflaggedApi: android.car.watchdog.CarWatchdogManager#STATS_PERIOD_CURRENT_DAY:
1911    New API must be flagged with @FlaggedApi: field android.car.watchdog.CarWatchdogManager.STATS_PERIOD_CURRENT_DAY
1912UnflaggedApi: android.car.watchdog.CarWatchdogManager#STATS_PERIOD_PAST_15_DAYS:
1913    New API must be flagged with @FlaggedApi: field android.car.watchdog.CarWatchdogManager.STATS_PERIOD_PAST_15_DAYS
1914UnflaggedApi: android.car.watchdog.CarWatchdogManager#STATS_PERIOD_PAST_30_DAYS:
1915    New API must be flagged with @FlaggedApi: field android.car.watchdog.CarWatchdogManager.STATS_PERIOD_PAST_30_DAYS
1916UnflaggedApi: android.car.watchdog.CarWatchdogManager#STATS_PERIOD_PAST_3_DAYS:
1917    New API must be flagged with @FlaggedApi: field android.car.watchdog.CarWatchdogManager.STATS_PERIOD_PAST_3_DAYS
1918UnflaggedApi: android.car.watchdog.CarWatchdogManager#STATS_PERIOD_PAST_7_DAYS:
1919    New API must be flagged with @FlaggedApi: field android.car.watchdog.CarWatchdogManager.STATS_PERIOD_PAST_7_DAYS
1920UnflaggedApi: android.car.watchdog.CarWatchdogManager#addResourceOveruseListener(java.util.concurrent.Executor, int, android.car.watchdog.CarWatchdogManager.ResourceOveruseListener):
1921    New API must be flagged with @FlaggedApi: method android.car.watchdog.CarWatchdogManager.addResourceOveruseListener(java.util.concurrent.Executor,int,android.car.watchdog.CarWatchdogManager.ResourceOveruseListener)
1922UnflaggedApi: android.car.watchdog.CarWatchdogManager#getResourceOveruseStats(int, int):
1923    New API must be flagged with @FlaggedApi: method android.car.watchdog.CarWatchdogManager.getResourceOveruseStats(int,int)
1924UnflaggedApi: android.car.watchdog.CarWatchdogManager#removeResourceOveruseListener(android.car.watchdog.CarWatchdogManager.ResourceOveruseListener):
1925    New API must be flagged with @FlaggedApi: method android.car.watchdog.CarWatchdogManager.removeResourceOveruseListener(android.car.watchdog.CarWatchdogManager.ResourceOveruseListener)
1926UnflaggedApi: android.car.watchdog.CarWatchdogManager.ResourceOveruseListener:
1927    New API must be flagged with @FlaggedApi: class android.car.watchdog.CarWatchdogManager.ResourceOveruseListener
1928UnflaggedApi: android.car.watchdog.CarWatchdogManager.ResourceOveruseListener#onOveruse(android.car.watchdog.ResourceOveruseStats):
1929    New API must be flagged with @FlaggedApi: method android.car.watchdog.CarWatchdogManager.ResourceOveruseListener.onOveruse(android.car.watchdog.ResourceOveruseStats)
1930UnflaggedApi: android.car.watchdog.IoOveruseStats:
1931    New API must be flagged with @FlaggedApi: class android.car.watchdog.IoOveruseStats
1932UnflaggedApi: android.car.watchdog.IoOveruseStats#CREATOR:
1933    New API must be flagged with @FlaggedApi: field android.car.watchdog.IoOveruseStats.CREATOR
1934UnflaggedApi: android.car.watchdog.IoOveruseStats#describeContents():
1935    New API must be flagged with @FlaggedApi: method android.car.watchdog.IoOveruseStats.describeContents()
1936UnflaggedApi: android.car.watchdog.IoOveruseStats#getDurationInSeconds():
1937    New API must be flagged with @FlaggedApi: method android.car.watchdog.IoOveruseStats.getDurationInSeconds()
1938UnflaggedApi: android.car.watchdog.IoOveruseStats#getRemainingWriteBytes():
1939    New API must be flagged with @FlaggedApi: method android.car.watchdog.IoOveruseStats.getRemainingWriteBytes()
1940UnflaggedApi: android.car.watchdog.IoOveruseStats#getStartTime():
1941    New API must be flagged with @FlaggedApi: method android.car.watchdog.IoOveruseStats.getStartTime()
1942UnflaggedApi: android.car.watchdog.IoOveruseStats#getTotalBytesWritten():
1943    New API must be flagged with @FlaggedApi: method android.car.watchdog.IoOveruseStats.getTotalBytesWritten()
1944UnflaggedApi: android.car.watchdog.IoOveruseStats#getTotalOveruses():
1945    New API must be flagged with @FlaggedApi: method android.car.watchdog.IoOveruseStats.getTotalOveruses()
1946UnflaggedApi: android.car.watchdog.IoOveruseStats#getTotalTimesKilled():
1947    New API must be flagged with @FlaggedApi: method android.car.watchdog.IoOveruseStats.getTotalTimesKilled()
1948UnflaggedApi: android.car.watchdog.IoOveruseStats#isKillableOnOveruse():
1949    New API must be flagged with @FlaggedApi: method android.car.watchdog.IoOveruseStats.isKillableOnOveruse()
1950UnflaggedApi: android.car.watchdog.IoOveruseStats#writeToParcel(android.os.Parcel, int):
1951    New API must be flagged with @FlaggedApi: method android.car.watchdog.IoOveruseStats.writeToParcel(android.os.Parcel,int)
1952UnflaggedApi: android.car.watchdog.PerStateBytes:
1953    New API must be flagged with @FlaggedApi: class android.car.watchdog.PerStateBytes
1954UnflaggedApi: android.car.watchdog.PerStateBytes#CREATOR:
1955    New API must be flagged with @FlaggedApi: field android.car.watchdog.PerStateBytes.CREATOR
1956UnflaggedApi: android.car.watchdog.PerStateBytes#PerStateBytes(long, long, long):
1957    New API must be flagged with @FlaggedApi: constructor android.car.watchdog.PerStateBytes(long,long,long)
1958UnflaggedApi: android.car.watchdog.PerStateBytes#describeContents():
1959    New API must be flagged with @FlaggedApi: method android.car.watchdog.PerStateBytes.describeContents()
1960UnflaggedApi: android.car.watchdog.PerStateBytes#getBackgroundModeBytes():
1961    New API must be flagged with @FlaggedApi: method android.car.watchdog.PerStateBytes.getBackgroundModeBytes()
1962UnflaggedApi: android.car.watchdog.PerStateBytes#getForegroundModeBytes():
1963    New API must be flagged with @FlaggedApi: method android.car.watchdog.PerStateBytes.getForegroundModeBytes()
1964UnflaggedApi: android.car.watchdog.PerStateBytes#getGarageModeBytes():
1965    New API must be flagged with @FlaggedApi: method android.car.watchdog.PerStateBytes.getGarageModeBytes()
1966UnflaggedApi: android.car.watchdog.PerStateBytes#writeToParcel(android.os.Parcel, int):
1967    New API must be flagged with @FlaggedApi: method android.car.watchdog.PerStateBytes.writeToParcel(android.os.Parcel,int)
1968UnflaggedApi: android.car.watchdog.ResourceOveruseStats:
1969    New API must be flagged with @FlaggedApi: class android.car.watchdog.ResourceOveruseStats
1970UnflaggedApi: android.car.watchdog.ResourceOveruseStats#CREATOR:
1971    New API must be flagged with @FlaggedApi: field android.car.watchdog.ResourceOveruseStats.CREATOR
1972UnflaggedApi: android.car.watchdog.ResourceOveruseStats#describeContents():
1973    New API must be flagged with @FlaggedApi: method android.car.watchdog.ResourceOveruseStats.describeContents()
1974UnflaggedApi: android.car.watchdog.ResourceOveruseStats#getIoOveruseStats():
1975    New API must be flagged with @FlaggedApi: method android.car.watchdog.ResourceOveruseStats.getIoOveruseStats()
1976UnflaggedApi: android.car.watchdog.ResourceOveruseStats#getPackageName():
1977    New API must be flagged with @FlaggedApi: method android.car.watchdog.ResourceOveruseStats.getPackageName()
1978UnflaggedApi: android.car.watchdog.ResourceOveruseStats#getUserHandle():
1979    New API must be flagged with @FlaggedApi: method android.car.watchdog.ResourceOveruseStats.getUserHandle()
1980UnflaggedApi: android.car.watchdog.ResourceOveruseStats#writeToParcel(android.os.Parcel, int):
1981    New API must be flagged with @FlaggedApi: method android.car.watchdog.ResourceOveruseStats.writeToParcel(android.os.Parcel,int)
1982
1983
1984VisiblySynchronized: android.car.CarAppFocusManager#abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback):
1985    Internal locks must not be exposed (synchronizing on this or class is still externally observable): method android.car.CarAppFocusManager.abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback)
1986VisiblySynchronized: android.car.CarAppFocusManager#abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback, int):
1987    Internal locks must not be exposed (synchronizing on this or class is still externally observable): method android.car.CarAppFocusManager.abandonAppFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback,int)
1988VisiblySynchronized: android.car.CarAppFocusManager#addFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener, int):
1989    Internal locks must not be exposed (synchronizing on this or class is still externally observable): method android.car.CarAppFocusManager.addFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener,int)
1990VisiblySynchronized: android.car.CarAppFocusManager#isOwningFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback, int):
1991    Internal locks must not be exposed (synchronizing on this or class is still externally observable): method android.car.CarAppFocusManager.isOwningFocus(android.car.CarAppFocusManager.OnAppFocusOwnershipCallback,int)
1992VisiblySynchronized: android.car.CarAppFocusManager#removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener):
1993    Internal locks must not be exposed (synchronizing on this or class is still externally observable): method android.car.CarAppFocusManager.removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener)
1994VisiblySynchronized: android.car.CarAppFocusManager#removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener, int):
1995    Internal locks must not be exposed (synchronizing on this or class is still externally observable): method android.car.CarAppFocusManager.removeFocusListener(android.car.CarAppFocusManager.OnAppFocusChangedListener,int)
1996VisiblySynchronized: android.car.CarAppFocusManager#requestAppFocus(int, android.car.CarAppFocusManager.OnAppFocusOwnershipCallback):
1997    Internal locks must not be exposed (synchronizing on this or class is still externally observable): method android.car.CarAppFocusManager.requestAppFocus(int,android.car.CarAppFocusManager.OnAppFocusOwnershipCallback)
1998