私のアプリがGoogleTVの下で市場に登場するのに少し問題があります。 Googleの公式ドキュメントを検索しましたが、マニフェストにはプログラムを無効にする要素が記載されているとは思われません。ハードウェア要件は、ランドスケープモード、ワコロック、外部ストレージ(ドキュメントに基づいてGTV用にフィルタリングされるべきではない)が指定されており、タッチスクリーン要素の「必須」属性をfalseに設定しています。以下Android Appを「Sony Internet TV」(Google TV)の市場に登場させる
私のプロジェクトのためのAndroidManifest.xmlです:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.whateversoft"
android:versionCode="2"
android:versionName="0.1" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
android:label="Color Shafted"
android:theme="@style/Theme.NoBackground"
android:debuggable="false">
<activity
android:label="Color Shafted"
android:name=".colorshafted.ColorShafted"
android:configChanges = "keyboard|keyboardHidden|orientation"
android:screenOrientation = "landscape">
<!-- Set as the default run activity -->
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:label="Color Shafted Settings"
android:name=".colorshafted.Settings"
android:theme="@android:style/Theme"
android:configChanges = "keyboard|keyboardHidden">
<!-- -->
</activity>
</application>
<!-- DEFINE PERMISSIONS FOR CAPABILITIES -->
<uses-permission android:name = "android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name = "android.permission.WAKE_LOCK"/>
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<!-- END OF PERMISSIONS FOR CAPABILITIES -->
</manifest>
私が取得するように見えることができないので、私はがっかりのそのてき一種ので、次のメジャーリリース後にアプリを宣伝開始しようとしてよこれはうまくいく。助けていただければ幸いです。)
私にアプリパッケージ名をお送りすることはできますか?私は何がうまくいかないかをチェックする。 –