3

I got Emulator in document . It has been included car sensor data. When I git aosp source android P. I ran emulator but no car data future in extended controls. android P aosp emulator

How can I enable car sensor data in my emulator?

I added my build number: aosp_car_x86-userdebug

dvu
  • 31
  • 2

1 Answers1

0

I had the same problem when I tried with my device configuration where I didn't get the "Car data" and "Sensor Replay" options in the Emulator's Extended Controls. This was solved by changing the PRODUCT_NAME configuration in my device's makefile to include "car" in the PRODUCT_NAME string.

You can check the emulator source code here: https://android.googlesource.com/platform/external/qemu.git/+/refs/heads/emu-master-dev/android/android-emu/android/avd/util.c#211

Tej
  • 1