Import translations. DO NOT MERGE ANYWHERE

Auto-generated-cl: translation import
Change-Id: I36820fddad3978d62e3d0bcf2bc2ce102260d1c0
84 files changed
tree: 016c1185170e259c945b65b296f7433d13e2436d
  1. car-admin-ui-lib/
  2. car-builtin-lib/
  3. car-internal-lib/
  4. car-lib/
  5. car-maps-placeholder/
  6. car-systemtest-lib/
  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. tests/
  19. tools/
  20. user/
  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-lib/               - Car API
cpp/                   - Native services
experimental/          - Experimental Car API and services
service/               - Car service
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.