Remove impl from InputClassifier HAL
Make the reference implementation for InputClassifier HAL do nothing.
This is to allow cuttlefish to install this implementation.
It is safe for any device to install this implementation, and is
equivalent to not having the HAL running at all.
Test: boot up cuttlefish, and interact with the virtual device to ensure
that input works okay. Then 'ps -A | grep -i input' and ensure that the
HAL is running on the device.
Bug: 122600147
Change-Id: I841811bc0da3d78db8d7c1589cf1c59819d901a1
diff --git a/input/classifier/1.0/default/Android.bp b/input/classifier/1.0/default/Android.bp
index ddd883c..ceb2aca 100644
--- a/input/classifier/1.0/default/Android.bp
+++ b/input/classifier/1.0/default/Android.bp
@@ -1,6 +1,6 @@
cc_binary {
- name: "android.hardware.input.classifier@1.0-service-example",
- init_rc: ["android.hardware.input.classifier@1.0-service-example.rc"],
+ name: "android.hardware.input.classifier@1.0-service.default",
+ init_rc: ["android.hardware.input.classifier@1.0-service.default.rc"],
relative_install_path: "hw",
vendor: true,
vintf_fragments: ["manifest_input.classifier.xml"],