我正试图让我的应用程序出现在谷歌电视市场上,但我没有运气。 我做了研究,并认为我在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>
任何建议将不胜感激。 感谢。
答案 0 :(得分:0)
“com.google.tv”不是Google TV支持的功能,会将您的应用从市场中过滤掉。
答案 1 :(得分:0)
我建议您具体查看the documentation first list of unsupported features。看起来没有将com.google.tv作为功能引用,因此请将其删除。