From 75494313594ab5cd77572ca0255b035ac55ab386 Mon Sep 17 00:00:00 2001 From: Jooyung Han Date: Thu, 14 Dec 2023 10:22:11 +0900 Subject: [PATCH] Remove features from sensors APEX Just found that each device wants to install a different set of sensors via LOCAL_SENSOR_FILE_OVERRIDES. Instead of providing a default list in the apex, which would make things difficult to configure, let's not hard-code the list in the apex. Bug: 315089092 Test: cvd start && dumpsys sensorservice Change-Id: Ie7ddbe6657d5afc06ca009ac37e3a54a5b26ad7d --- sensors/aidl/default/Android.bp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/sensors/aidl/default/Android.bp b/sensors/aidl/default/Android.bp index 08ee773801..e93c391cf4 100644 --- a/sensors/aidl/default/Android.bp +++ b/sensors/aidl/default/Android.bp @@ -97,12 +97,5 @@ apex { prebuilts: [ "sensors-default.rc", // init rc "sensors-default.xml", // vintf fragment - "android.hardware.sensor.ambient_temperature.prebuilt.xml", - "android.hardware.sensor.barometer.prebuilt.xml", - "android.hardware.sensor.gyroscope.prebuilt.xml", - "android.hardware.sensor.hinge_angle.prebuilt.xml", - "android.hardware.sensor.light.prebuilt.xml", - "android.hardware.sensor.proximity.prebuilt.xml", - "android.hardware.sensor.relative_humidity.prebuilt.xml", ], }