I use custom intents from the app actions, after executing the command the assistant does not close, it remain open with a twisting throbber, but the focus remains on our application and to close the assistant i need to press the home button.
actions.xml:
<?xml version ="1.0" encoding ="utf-8"?>
<actions>
<action
intentName="custom.actions.intent.OPEN_APP_FEATURE"
queryPatterns="@array/feature_queries">
<parameter
name="action"
type="https://schema.org/Text" />
<parameter
name="text"
type="https://schema.org/Text" />
<fulfillment urlTemplate="https://safarov.page.link/open{?item_action,item_text}">
<parameter-mapping
intentParameter="action"
urlParameter="item_action" />
<parameter-mapping
intentParameter="text"
urlParameter="item_text" />
</fulfillment>
</action>
</actions>
AndroidManifest.xml:
<intent-filter
android:autoVerify="true"
tools:targetApi="m">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="safarov.page.link"
android:scheme="https" />
</intent-filter>
Intents work out correctly, but the assistant does not close.
App Actions are currently not supported in Android TV. Stay tuned for updates.