Hello,
We need to configure the Android Oreo 8.1 6AO.1.1, with the default Android Automotive Google Launcher. It was configured by default in 6AO.1.0 ,
Can you please explain how optain the same step by step in 6AO.1.1
BR,
Fabio
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello,
We need to configure the Android Oreo 8.1 6AO.1.1, with the default Android Automotive Google Launcher. It was configured by default in 6AO.1.0 ,
Can you please explain how optain the same step by step in 6AO.1.1
BR,
Fabio
Hi Fabio,
The default configuration on 6AO.1.1 is Automotive launcher.
Regards,
Vishal
Could you try removing below 2 components and test?
adb shell rm -rf /system/priv-app/android.car.cluster.loggingrenderer/
adb shell rm -rf /system/priv-app/DirectRenderingClusterSample/
This is screen density related. The default density is set to 240 and is good for 10180p screen. Try below command.
wm density 160
The above command is equivalent of doing below in your build (device/ti/jacinto6evm project)
diff --git a/device.mk b/device.mk index e80a7b3..c5d261a 100644 --- a/device.mk +++ b/device.mk @@ -138,7 +138,7 @@ PRODUCT_PACKAGES += \ com.android.future.usb.accessory PRODUCT_PROPERTY_OVERRIDES += \ - ro.sf.lcd_density=240 + ro.sf.lcd_density=160 # WI-Fi PRODUCT_PACKAGES += \
Glad, it's working. Any more questions on launcher topic?
All automotive related services and packages come from project packages/services/Car/ in Android source code.