commit | b739fdd8e0ff079b6c56cd4eced1f9d8dd36f16d | [log] [tgz] |
---|---|---|
author | Eric Chiang <eschiang@google.com> | Wed Sep 25 15:13:32 2024 -0700 |
committer | Eric Chiang <eschiang@google.com> | Wed Sep 25 16:16:10 2024 -0700 |
tree | 39d0eabf7372b4d9f225c4ee4dc359f509993d41 | |
parent | 88016f5718ab81c86ef60b70f84108356f022f26 [diff] |
Disable dock media appps for RB RB doesn't need to have media apps enabled while driving since there is already a playback bar. Adding config flag to disable it. Bug: 369683531 Test: manual on husdon and RB Flag: EXEMPT bug_fix Change-Id: If5b0ffa78297bdb65f1844b6e1b03f894cec5251
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>