Merge "Fix typo in HostEndpointInfo definition"
diff --git a/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl b/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl
index 7da4482..e7dcbc7 100644
--- a/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl
+++ b/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/HostEndpointInfo.aidl
@@ -36,8 +36,8 @@
 parcelable HostEndpointInfo {
   char hostEndpointId;
   android.hardware.contexthub.HostEndpointInfo.Type type;
-  @nullable String[] packageName;
-  @nullable String[] attributionTag;
+  @nullable String packageName;
+  @nullable String attributionTag;
   @Backing(type="int") @VintfStability
   enum Type {
     TYPE_FRAMEWORK = 1,
diff --git a/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl b/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl
index 370703f..40a231d 100644
--- a/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl
+++ b/contexthub/aidl/android/hardware/contexthub/HostEndpointInfo.aidl
@@ -28,10 +28,10 @@
     Type type;
 
     /** The (optional) package name of the host. */
-    @nullable String[] packageName;
+    @nullable String packageName;
 
     /** The (optional) attribution tag associated with this host. */
-    @nullable String[] attributionTag;
+    @nullable String attributionTag;
 
     @VintfStability
     @Backing(type="int")