将Google Assistant与我的应用程序集成时出现问题

时间:2019-07-16 17:08:13

标签: android google-assistant-sdk app-actions

我正在尝试将Google Assistant集成到我的健身应用程序中,以便当用户说“在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>

仍然没有得到理想的结果。我在这里做错什么了。

1 个答案:

答案 0 :(得分:0)

您应该使用Android Studio中的App Actions测试插件来触发操作:

https://plugins.jetbrains.com/plugin/12322-app-actions-test-tool

一旦安装了插件,就可以在“工具”下找到它,然后可以为应用程序+参数定义调用名称。

从头开始,您可以触发它说“好吧,谷歌,在xyz应用程序上开始锻炼”