android13/packages/services/Car
liiir1985 7f62dcda9f initial 2024-06-22 20:45:49 +08:00
..
FrameworkPackageStubs initial 2024-06-22 20:45:49 +08:00
apex_car_framework initial 2024-06-22 20:45:49 +08:00
car-admin-ui-lib initial 2024-06-22 20:45:49 +08:00
car-builtin-lib initial 2024-06-22 20:45:49 +08:00
car-evs-helper-lib initial 2024-06-22 20:45:49 +08:00
car-helper-lib initial 2024-06-22 20:45:49 +08:00
car-lib initial 2024-06-22 20:45:49 +08:00
car-lib-module initial 2024-06-22 20:45:49 +08:00
car-maps-placeholder initial 2024-06-22 20:45:49 +08:00
car-test-lib initial 2024-06-22 20:45:49 +08:00
car-usb-handler initial 2024-06-22 20:45:49 +08:00
car_product initial 2024-06-22 20:45:49 +08:00
cpp initial 2024-06-22 20:45:49 +08:00
data/etc initial 2024-06-22 20:45:49 +08:00
experimental initial 2024-06-22 20:45:49 +08:00
obd2-lib initial 2024-06-22 20:45:49 +08:00
packages initial 2024-06-22 20:45:49 +08:00
procfs-inspector initial 2024-06-22 20:45:49 +08:00
service initial 2024-06-22 20:45:49 +08:00
service-builtin initial 2024-06-22 20:45:49 +08:00
tests initial 2024-06-22 20:45:49 +08:00
tools initial 2024-06-22 20:45:49 +08:00
vehicle-hal-support-lib initial 2024-06-22 20:45:49 +08:00
.clang-format initial 2024-06-22 20:45:49 +08:00
.gitignore initial 2024-06-22 20:45:49 +08:00
Android.mk initial 2024-06-22 20:45:49 +08:00
CPPLINT.cfg initial 2024-06-22 20:45:49 +08:00
CleanSpec.mk initial 2024-06-22 20:45:49 +08:00
OWNERS initial 2024-06-22 20:45:49 +08:00
OWNERS_networking initial 2024-06-22 20:45:49 +08:00
PREUPLOAD.cfg initial 2024-06-22 20:45:49 +08:00
README.md initial 2024-06-22 20:45:49 +08:00
TEST_MAPPING initial 2024-06-22 20:45:49 +08:00

README.md

AAOS

Source code for Android Automotive OS.

Structure

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

C++

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.