我们目前正在尝试将Android中的一个应用添加到Android TV应用商店中。由于我认为是模棱两可的原因,它似乎一直在被拒绝。您可以在下面看到屏幕截图。电子邮件中给出的链接指向this。
我们的清单:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/>
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<uses-feature android:name="android.software.leanback" android:required="true"/>
<uses-feature android:name="android.hardware.faketouch" android:required="false"/>
<uses-feature android:name="android.hardware.telephony" android:required="false"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.nfc" android:required="false"/>
<uses-feature android:name="android.hardware.location.gps" android:required="false"/>
<uses-feature android:name="android.hardware.microphone" android:required="false"/>
<uses-feature android:name="android.hardware.sensor" android:required="false"/>
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="19"/>
<application
android:icon="@drawable/ic_launcher"
android:theme="@android:style/Theme.NoTitleBar"
android:banner="@drawable/testfairybanner"
android:label="@string/app_name">
<activity
android:name="com.testfairy.app.MobileMainActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="portrait"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name=".TvMainActivity"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:theme="@style/Theme.Leanback">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
<service android:name=".AccountAuthenticatorService" android:exported="true" android:process=":auth">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator" android:resource="@xml/authenticator" />
</service>
</application>
据我所知,我已经满足了Android TV的所有要求,但是该应用程序仍然被拒绝。如果有人遇到这个问题并已解决,我真的很想知道您是如何解决这个问题的。
答案 0 :(得分:0)
添加到您的清单:
<uses-feature android:name="android.hardware.screen.portrait" android:required="false"/>
如果您仔细看,实际上是在您直接到达的page上提到的。由于某些原因,同一页上的示例缺少此行。