tag | 9a8b13c49b1f050d6d13273f8b17149635bd096c | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Wed Jan 08 15:47:10 2025 -0800 |
object | eb0b4dac89ad852e0e720dca59684a79ed71365b |
aml_mpr_351113100 (12872438,com.google.android.go.mediaprovider,com.google.android.mediaprovider)
commit | eb0b4dac89ad852e0e720dca59684a79ed71365b | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue Oct 08 13:34:23 2024 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue Oct 08 13:34:23 2024 +0000 |
tree | 7ad4d504a6ffac26dec0056ec9797186f28b94ce | |
parent | 3555dd7478d257450227d5508c96d0ca9509fd1e [diff] | |
parent | 9fcd8832e04cca9e9f3d44d43df28b23dae2b8b3 [diff] |
Snap for 12469265 from 9fcd8832e04cca9e9f3d44d43df28b23dae2b8b3 to mainline-mediaprovider-release Change-Id: Ia4fb29dbe36a5740f69850f75ba0ceeb7b094750
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>