The mirror api's menu items are only displaying 1 of two open URI intents.
Is there a way to get the behavior so that a user can own have two different URI_OPEN payloads on the same card?
I have it properly configured from this referenced question, but it only shows the first available OPEN_URI. Menu Item for "OPEN_URI" not present in menuItems return
If 'fooApp' shows up first, it is the only one available but if 'barApp' appears first it is shown.
Returns
(Foo App, Reply, Delete)
OR
(Bar App, Reply, Delete)
but not Foo App, Bar App, Reply, Delete (desired)
"menuItems": [
{
"action": "OPEN_URI",
"id": "1",
"payload": "fooApp://",
"values": [{
"displayName": "Foo App",
"iconUrl":"http://www.image.com/x.png"
}]
},
{
"action": "OPEN_URI",
"id": "2",
"payload": "barApp://",
"values": [{
"displayName": "Bar App",
"iconUrl":"http://www.image.com/x.png"
}]
},
{"action": "REPLY"},
{"action": "DELETE"},
],