commit | af9f2e711e6ed1ba62e370cf11c80aaa21502670 | [log] [tgz] |
---|---|---|
author | Oscar Azucena <oscarazu@google.com> | Mon Nov 07 22:15:50 2022 -0800 |
committer | Oscar Azucena <oscarazu@google.com> | Fri Nov 11 15:26:28 2022 -0800 |
tree | 12b1b601059e0e3b5fb65473d5cd745c463822f0 | |
parent | feca95b0f9656482ecfeaa345c119aec71e94da1 [diff] |
Refactored current car audio focus stack to use OEM focus info No logic changes for current focus stack, just changing the focus stack to use oem car audio focus results as evaluated internally. Future changes will use oem car audio focus results instead for the case when OEM focus service is enabled. Bug: 240615622 Test: atest com.android.car.audio CarAudioFocusTest Test: atest CarAudioServiceUnitTest CarAudioManagerSystemTest Test: atest CarAudioManagerTest CarAudioManagerPermissionTest Test: atest CarAudioManagerPublicPermissionTest AtsAudioDeviceTest Change-Id: Idb9c4c36a12bcee748888e6afab2c61401c00737
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>