繁体   English   中英

应用难以显示在Google TV市场中

[英]Difficulty getting app to appear in Google TV Market

我正在尝试让我的应用程序显示在Google电视的市场上,但我没有任何运气。 我进行了研究,并认为Manifest.xml中的所有内容都正确,但是仍然没有显示出来。 这就是我的清单...

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.whichdiffgtv"
    android:versionCode="4"
    android:versionName="1.4" >

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


   <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"/>


    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:label="@string/app_name"

            android:name=".WIDgTVActivity" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />

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

    ></activity>
    </application>

任何建议,将不胜感激。 谢谢。

Google TV不支持“ com.google.tv”功能,它会将您的应用从市场中过滤掉。

我建议您首先查看文档,特别是不支持的功能列表 似乎没有对com.google.tv作为功能的引用,因此请将其删除。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM