Vehicle properties
Vehicle informationnot in the public Car API
GENERAL_SAFETY_REGULATION_COMPLIANCE_REQUIREMENT
What it is
EU's General security regulation compliance requirement.
Returns whether general security regulation compliance is required, if so, what type of requirement.
How the ID is built
A property ID is a 32-bit value packing four fields. Reading 0x11400f47 apart:
| Field | Mask | Value | Means |
|---|---|---|---|
| Group | 0xf0000000 | 0x10000000 | SYSTEM |
| Area | 0x0f000000 | 0x01000000 | GLOBAL |
| Type | 0x00ff0000 | 0x00400000 | INT32 |
| Ordinal | 0x0000ffff | 0x00000f47 | 0xf47 |
Reading it from an app
This property is defined in the HAL but is not exposed as a constant in android.car.VehiclePropertyIds, so it is not reachable through CarPropertyManager from an ordinary app. It is used by the platform, or by vendor code running with system privileges.

