summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Lei Ju <leiju@google.com> 2023-11-06 16:23:33 -0800
committer Lei Ju <leiju@google.com> 2023-11-30 10:25:18 -0800
commit84ecec98f189da19ff13d3bdf04db74290d7b71e (patch)
tree392a6dd23f89746d40c8ba00d3fa66de3e1ef48f
parentf3e5ce2188c1527385cb754f3cb44f491bf4f182 (diff)
Enable UUID support from ContextHubService
Test: Run chre_aidl_hal_client and observe a successful callback registration. Bug: 307749518 Change-Id: I66099a11a2e2c27dc497f1871db4985798bbd229 Change-Id: I25248b0c5af0b9acc43e8b101fe42f1741d20392
-rw-r--r--services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java b/services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java
index 35c61204d251..d359280c2a6f 100644
--- a/services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java
+++ b/services/core/java/com/android/server/location/contexthub/IContextHubWrapper.java
@@ -467,8 +467,7 @@ public abstract class IContextHubWrapper {
}
public byte[] getUuid() throws RemoteException {
- //TODO(b/247124878): return the UUID defined in this file when the API is put in use
- throw new RemoteException("This API is not implemented yet.");
+ return UUID;
}
@Override