I saw Google Assistant codelabs and implemented open app via Google Assistant. I am using actions.intent.OPEN_APP_FEATURE
intent, it is not working what i expected. For example, It works when i say "Hey google open myAppName app/application/work/run". But i wanted it opens my app when i say "Hey google appName". Could anyone help me to resolve it? Thanks in advance!
<?xml version ="1.0" encoding ="utf-8"?>
<actions>
<action intentName="actions.intent.OPEN_APP_FEATURE">
<fulfillment urlTemplate="https://app.page.link/open{?featureName}">
<parameter-mapping
intentParameter="feature"
urlParameter="featureName" />
</fulfillment>
<parameter name="feature">
<entity-set-reference entitySetId="FeaturesSetId"/>
</parameter>
</action>
<entity-set entitySetId="FeaturesSetId">
<entity name="App" identifier="app"/>
<entity name="Application" identifier="application"/>
<entity name="Work" identifier="work"/>
<entity name="Run" identifier="run"/>
</entity-set>
</actions>