我一直在尝试让应用程序操作适用于我的应用程序,但它似乎只有在我使用应用程序操作测试工具时才有效。当我的应用程序发布到 Play 商店时,我在应用程序操作测试工具中使用的所有短语都无法与谷歌助手一起使用。如果有人能告诉我我在这里做错了什么,那将非常有帮助。
动作.xml:
<actions>
<action intentName="actions.intent.OPEN_APP_FEATURE">
<fulfillment urlTemplate="{@url}" />
<!-- Define parameters with inventories here -->
<parameter name="feature">
<entity-set-reference entitySetId="featureParamEntitySet"/>
</parameter>
</action>
<entity-set entitySetId="featureParamEntitySet">
<entity url="https://myapp.com/startmyapp" name="open my app" alternateName="@array/startMyAppSynonyms"/>
<entity url="https://myapp.com/stopmyapp" name="close my app" alternateName="@array/stopMyAppSynonyms"/>
</entity-set>
</actions>
数组.xml:
<resources>
<array name="startMyAppSynonyms">
<item>turn on</item>
<item>activate</item>
<item>on</item>
<item>signal on</item>
</array>
<array name="stopMyAppSynonyms">
<item>turn off</item>
<item>deactivate</item>
<item>off</item>
<item>signal off</item>
</array>
</resources>