使用自定义应用从Google Home播放内容

时间:2018-08-21 11:14:03

标签: android actions-on-google intentfilter google-home

我们尝试为我们的自定义音乐和视频应用程序添加google home支持。

这是清单文件中的代码:

 <activity
        android:name="com.tunevufe.android.presentation.player.PlayerActivity"
        android:launchMode="singleTop"
        android:screenOrientation="portrait"
        android:theme="@style/AppTheme">
         <intent-filter>
            <action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

我尝试让Google助手“在MyAppName上播放某些内容,但回答是“我无法识别MyAppName。尝试改用您的设备名称”。

因此,我应该在代码中添加哪些内容以支持Google Assistant和Google Home。应用程序应播放音频和视频播客。

0 个答案:

没有答案