我已经在Google Play商店发布了应用程序。在我尝试过的任何运行Android TV的设备上,它都无法在Google Play Store应用程序中找到。我可以用它的名字在Google Play上找到它,但它不能安装在我的Android电视设备上。此应用程序的播放控制台中有649个标记为支持的设备。我的设备列表中甚至有一台设备被标记为支持。这就是谷歌Chromecast谷歌电视。但它也不兼容,我不能在这个设备上安装我的应用程序。有没有人在Android电视应用中遇到过这样的情况?
这是我的载货单。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.xxx">
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<uses-feature
android:name="android.software.leanback"
android:required="true" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.Leanback">
<activity
android:name=".MainActivity"
android:banner="@mipmap/icon_androidtv"
android:icon="@mipmap/icon_androidtv"
android:label="@string/app_name"
android:logo="@mipmap/icon_androidtv">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
是的,我的应用程序非常简单。只有一个带有单个WebView的视图。当然,该应用程序可以直接从Android Studio安装在任何Android电视设备上。我应该改变AndroidManifest中的一些东西,使其与安卓电视设备兼容吗?
发布于 2021-03-16 00:27:33
要分发到Android电视设备,您需要在Google Play中选择加入。在Play Console中,转到左侧菜单中Release分组中的Setup部分。选择Advanced settings并切换到Release types选项卡。点击+添加发布类型,选择Android TV。您必须包括电视分发所需的屏幕截图和横幅。
请注意,安卓电视需要额外的审查来验证TV App Quality。
发布于 2021-10-30 06:05:19
在当前的play控制台中,Ian描述的步骤如下所示
https://stackoverflow.com/questions/66595856
复制相似问题