为什么我的应用程序可以使用应用程序操作测试工具,但在 Play 商店上发布时却不能?

Why does my app work with app actions test tool, but not when it's published on the play store?

我一直在尝试让应用操作适用于我的应用,但它似乎只有在我使用应用操作测试工具时才会起作用。当我的应用程序发布到 Play 商店时,我在应用程序操作测试工具中使用的短语 none 与 google 助手一起工作。如果有人能告诉我我在这里做错了什么,那将非常有帮助。

actions.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>

arrays.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>

原来我的应用只是在等待审核和发布。