簡體   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