commit | b2925e25d582ca25d1bb12041fb0291316e0d4dd | [log] [tgz] |
---|---|---|
author | Babak Bostan <babakbo@google.com> | Thu Oct 13 11:56:31 2022 -0700 |
committer | Babak Bostan <babakbo@google.com> | Fri Oct 14 20:58:08 2022 +0000 |
tree | 1a3abfe8546fb9d9427fb35f4452681ab2f5698a | |
parent | e8627b39a3c7b0e257928e5af41aba5bde836321 [diff] |
Update the navigatoin bar UI and hvac for portrait car - Note: We cannot rely on the palette here since the colors don't change in day/night mode. So we use the neutral colors directly. No-Typo-Check: Typo is in a component name unrelated to this change Bug: 246602262 Test: Manual Change-Id: I62c97cf7cc5c204a13e4403381a033383f5dd4b4
Source code for Android Automotive OS.
car_product/ - AAOS product car-builtin-lib/ - A helper library for CarService to access hidden framework APIs car-lib/ - Car API car-lib-module/ - Car API module cpp/ - Native services experimental/ - Experimental Car API and services packages/ - Apps and services for cars service/ - Car service module service-builint - Platform builtin component that runs CarService module tests/ - Tests and sample apps tools/ - Helper scripts
Native (C++) code format is required to be compatible with .clang-format file. The formatter is already integrated to repo
tool. To run manually, use:
git clang-format --style=file --extension='h,cpp,cc' HEAD~
Note that clang-format is not desirable for Android java files. Therefore the command line above is limited to specific extensions.
Dumpsys and car shell can be useful when debugging CarService integration issues.
adb shell dumpsys car_service # to dump all car service information adb shell dumpsys car_service --services [service name] # to dump a specific service information adb shell dumpsys car_service --list # get list of available services
Dumpsys for CarService includes the following (more information is availble in dumpsys, below are just highlights):
adb shell cmd car_service
CarService supports commands via car shell:
(list is not complete, run adb shell cmd car_service -h for more details)
Start Garage mode
adb shell cmd car_service garage-mode on
Finish Garage mode
adb shell cmd car_service garage-mode on
Get Garage mode status
adb shell cmd car_service garage-mode query
Change Garage mode max duration (only eng and debug builds)
adb shell setprop android.car.garagemodeduration <seconds>