我正在尝试让 Android 助手打开我的应用程序并将其传递给字符串参数。目前我可以使用 App Actions Test Tool 来做到这一点。但是,如果我打开助手并输入,或者说,open <App Name> <parameter string>
我只会得到网络结果。这是我的 actions.xml 的样子:
<actions xmlns:android="http://schemas.android.com/apk/res/android">
<action intentName="actions.intent.OPEN_APP_FEATURE">
<fulfillment urlTemplate="https://run-main-activity.com{?featureName}">
<parameter-mapping
intentParameter="feature"
urlParameter="featureName" />
</fulfillment>
</action>
</actions>