2011-12-16 90 views
1

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

<?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> 
+0

您是否已经激活APK并勾选了TOS? – Force 2011-12-16 17:44:29

回答

0

看起来您在清单中拥有所有正确的标签。对于我的应用程序,它表示它可以在2个设备上使用(互联网电视和未知)。对于我的应用程序,它花了一天多的时间才会显示在Google TV上的“市场”应用程序部分,尽管它立即显示在网络市场上。我可以搜索我的应用并在Google TV上找到它。我刚刚搜索了您的应用程序,它会找到该应用程序,但在浏览市场时并未显示在娱乐部分。

让它出现的另一个触发器可能是应用程序安装在Google TV设备上,或者有人给出评分。

0

您还有更多使用特性元素比你需要,支持屏幕元素是不必要的。

尽量只以下的使用特征部分:

<uses-feature android:name="com.google.android.tv" android:required="true"/> 
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/> 
1

,因为你声明使用全球定位系统在您的清单,以及谷歌电视有没有,你也应该在清单:

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

(一些广告网络使用定位服务,所以你还是要保持它在你的清单)

这娃是我们的Country Music RADIO应用程序的解决方案。

0

我已经从我的应用清单中删除了支持屏幕标签,并且它显示在Google TV上。

我不认为有任何“com.google.tv”包。我相信你在第二行中有正确的“com.google.android.tv”。这里是Google TV清单指南 - https://developers.google.com/tv/android/docs/gtv_androidmanifest

尝试从清单中删除以下行。

<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"/> 
相关问题