gpt4 book ai didi

适用于 Google TV 的 Android 应用显示 0 台设备

转载 作者:行者123 更新时间:2023-11-30 04:25:53 25 4
gpt4 key购买 nike

我检查了其他问题,我确定 apk 已激活,该应用程序在我的 Logitech Revue 上正常运行,但它没有出现在 Google TV Market Place 中,并且显示“此应用程序是可用于 0 多个设备。”在我的控制台中。我将尝试包含我的 adroidmanifest 文件。我已通读 Android 和 Google 开发人员文档,但似乎无法弄清楚为什么未列出 Google TV 设备或为什么它不在 Google TV 市场中。在此先感谢您的帮助。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.flickstream.channels"
android:versionCode="5"
android:versionName="1.1" >
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="false"
android:resizeable="true"
android:anyDensity="true"
/>
<uses-feature android:name="com.google.tv" android:required="true"/>
<uses-feature android:name="com.google.android.tv" android:required="true"/>
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<uses-feature android:name="android.hardware.location.gps" android:required="false"/>
<uses-feature android:name="android.hardware.telephony" android:required="false"/>

<uses-sdk android:minSdkVersion="7" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name"
android:name=".FlickStreamActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

最佳答案

因为你在manifest中声明了使用GPS,而google TV没有,所以你也应该在manifest中加入:

<uses-feature android:name="android.hardware.location.gps" android:required="false"/>

(一些广告网络使用定位服务,因此您仍然希望将其保留在您的 list 中)

这是我们乡村音乐电台应用的解决方案。

关于适用于 Google TV 的 Android 应用显示 0 台设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8538039/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com