Support signed build for car framework  module

- Allow both com.android and com.google.android (=signed build).
- Clean up duplicate definitions for updatable and module
  build.

Bug: 214625143
Test: build, bootup
Change-Id: I65f992f93f13cde06af47f5e4646acbea5e3444e
7 files changed
tree: ebc37c50e6c6e10b11e6405e5fd2b3ec62000b78
  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.