これは、Google Play エンドにアップロードした Google TV アプリケーション マニフェストです。「0 台のデバイスがサポートされています」というメッセージが表示されます。誰かが私が間違っていることを教えてもらえますか (GoogleTV デバイスをターゲットにしたい)
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="*******"
android:versionCode="12"
android:versionName="1.081" >
<uses-sdk
android:minSdkVersion="3"
android:targetSdkVersion="17"
android:maxSdkVersion="17"/>
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<uses-feature android:name="com.google.android.tv" android:required="true"/>
<application
android:name=".App"
android:icon="@drawable/logo_min"
android:label="@string/app_name" >
<activity
android:name=".WelcomeActivity"
android:label="@string/title_activity_main" >
<!-- android:screenOrientation="landscape" -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>