I need some information on types.hal and VehiclePropertyIds.java . I have added new property in types.hal as follows,
types.hal File changes,
enum ButtonStatus : int32_t {
ON = 1,
OFF = 2
};
/**
* SunRoofButton
* @change_mode VehiclePropertyChangeMode:ON_CHANGE
* @access VehiclePropertyAccess:READ_WRITE
* @data_enum ButtonStatus
*/
SunRoof =(
0x0602
| VehiclePropertyGroup:VENDOR
| VehiclePropertyType:INT32
| VehicleArea:SEAT),
What should i do next to get these ids generated in **VehiclePropertyId.java**
Currently am doing following 3 steps
**Commands :**
. build/envsetup.sh
lunch aosp_car_x86-userdebug
make -j8
By this the build is successful but i don't see these entries generated in vehiclePropertyIds.java