| commit | e9ad4c4251663f9934a8ffb10f8f986830372b47 | [log] [tgz] |
|---|---|---|
| author | Justin Yun <justinyun@google.com> | Mon Mar 17 19:45:26 2025 +0900 |
| committer | Justin Yun <justinyun@google.com> | Mon Mar 17 19:46:38 2025 +0900 |
| tree | 2bc8e24e7d2190d4b910f8a77fefb6715ada9f3e | |
| parent | 589c00fba4ed0c093037569bd71cef5e8bae9a3e [diff] |
StatementService is not an Android system module StatementService is not installed when a target has GMS core. As the installation of this app depends on the build target, move it to system_ext. system image must not include target specific modules. Bug: 401090620 Test: atest StatementServiceTests Change-Id: Ifb3fc37d522484bc5027f66840a32f68eb4e6564
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>