Allowlists CarEvsCameraPreviewApp for SYSTEM/FULL users

CarEvsCameraPreviewApp is our default rearview app and needs to run for
all user types.

Fix: 214963322
Test: Runs below command and confirms com.google.android.car.evs does
    exists in the result
    > adb shell cmd user report-system-user-package-whitelist-problems \
      --critical-only --mode 1
Test: atest PreInstalledPackagesTest
Change-Id: I0a5f6f5ca6d20251b480c6b0442dbf61b4da1ec6
1 file changed
tree: e049d9985f2df727690dc0c62e51c4863e8c5f13
  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.