我正在尝试将谷歌助手集成到我的健身应用程序中,这样当用户说“在 xyz 应用程序上开始我的锻炼”时,我的应用程序就会启动。我在这里观看了视频: https ://developers.google.com/actions/app/
并将其添加到我的清单中:
<meta-data android:name="com.google.android.actions"
android:resource="@xml/actions"/>
然后将这些详细信息添加到我的 actions.xml 文件中:
<?xml version="1.0" encoding="utf-8"?>
<actions>
<action intentName="actions.intent.START_EXERCISE">
<fulfillment urlTemplate="https://xyz.in{?exercise}">
<parameter-mapping
intentParameter = "exercise.name"
urlParameter = "exercise"
/>
</fulfillment>
</action>
</actions>
仍然没有得到想要的结果。我在这里做错了什么。