Moved some event logs

- Events log tags are no longer exposed directly. Built-in library will have methods exposed for each tag.
- New CarService release need to check the version of the build-in library and have to call tag accordingly.

Bug: 202769950
Bug: 193798273
Test: m
Change-Id: I37cb1f78df0c02f70f4f9b33198b01fb2922d95d
7 files changed
tree: e74c6170ba801424d18c498043e4de7d9f56d39e
  1. apex_car_framework/
  2. car-admin-ui-lib/
  3. car-builtin-lib/
  4. car-lib/
  5. car-lib-module/
  6. car-maps-placeholder/
  7. car-test-lib/
  8. car-usb-handler/
  9. car_product/
  10. cpp/
  11. data/
  12. experimental/
  13. FrameworkPackageStubs/
  14. obd2-lib/
  15. packages/
  16. procfs-inspector/
  17. service/
  18. service-builtin/
  19. tests/
  20. tools/
  21. vehicle-hal-support-lib/
  22. .clang-format
  23. .gitignore
  24. Android.mk
  25. CleanSpec.mk
  26. CPPLINT.cfg
  27. OWNERS
  28. PREUPLOAD.cfg
  29. README.md
  30. TEST_MAPPING
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.