如何测试Google Assistant集成Android应用程序?

问题描述 投票:0回答:1

实际上,我已经尝试使用我的 Android 应用程序测试 Google Assistant。

我一直在使用Android studio版本Android Studio Ladybug | 2024.2.1 补丁 1.

Google Assistant Docs 中,测试应用程序的唯一方法是安装 Google Assistant Plugin 并进行测试。但该插件仅在 Android Studio Hedgehog | 之前可用。 2023.1.1版本及之后停产。由于我的项目,我无法降级 Android Studio。那么我应该如何使用 Google Assistant Integration 测试应用程序?

请帮帮我。提前致谢。

shortcut.xml
添加到项目的 res 文件夹中。

<?xml version ="1.0" encoding="utf-8"?>
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
    <capability android:name="actions.intent.OPEN_APP_FEATURE">
        <intent
            android:action="android.intent.action.VIEW"
            android:targetPackage="com.dmr.test"
            android:targetClass="com.dmr.test.MainActivity">
            <parameter
                android:name="feature"
                android:key="feature"/>
        </intent>
    </capability>
</shortcuts>

AndroidManifest.xml
中的活动下添加了元数据。

  <activity
            ....
            <meta-data
                android:name="android.app.shortcuts"
                android:resource="@xml/shortcuts" />
  </activity>
android kotlin android-studio voice-recognition google-assistant
1个回答
0
投票

没有任何其他方法可以端到端测试 Google* 助理集成。您可以安装另一个受支持的 Studio 版本,而无需降级您使用的主版本。请参阅如何在同一台电脑上安装多个不同版本的Android studio?

*您可以编写您自己的测试助手应用程序来测试它,但这将是相当大量的工作。

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.