可以在Google Play上为Android TV和智能手机发布相同的应用程序

时间:2018-07-04 11:34:00

标签: android google-play android-tv

我想将我的应用程序用于Android TV和模拟器(例如BlueStacks)。我的应用有Leanback Launcher请求,并且已经发布了Android TV。

当我生成签名的apk时,我可以将其上传到bluestack模拟器中,并且运行良好。 BlueStack模拟器在Google Play上显示为Samsung Galaxy S8

在Google Play控制台中,我发布的应用仅支持电视设备。

是否可以在Google Play上为Android TV和智能手机发布同一应用?

它是我的清单文件

Python

1 个答案:

答案 0 :(得分:2)

您只需要电视功能-

<uses-feature
    android:name="android.software.leanback"
    android:required="true" />

如果删除它,则可以同时发布。