Hi Support,
We have uploaded Android Fire TV application to Amazon app store but getting rejected on some of the below devices:
Fire TV Stick 4K
Fire TV Edition - Nebula D3000 Soundbar (2019)
Fire TV (Gen 3)
Fire TV Stick with Alexa Voice Remote
Fire TV Edition - Toshiba HD (2018)
Fire TV Cube
Could you please look in to this and suggest us what is going wrong with these devices?Here is our menifest.xml file detail:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.tnott4.tv"> <application android:name=".AppController" android:allowBackup="false" android:banner="@drawable/app_logo" android:hardwareAccelerated="true" android:icon="@drawable/app_logo" android:label="@string/app_name" android:largeHeap="true" android:supportsRtl="true" android:theme="@style/Base.AppTheme"> <activity android:name=".splash.SplashActivity" android:launchMode="singleTask" android:screenOrientation="landscape"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER"/> <category android:name="android.intent.category.LEANBACK_LAUNCHER" /> </intent-filter> </activity> <activity android:name=".view.MainActivity" android:launchMode="singleTask" android:screenOrientation="landscape" android:theme="@style/CustomImageCardTheme"> <intent-filter> <action android:name="android.intent.action.VIEW" /> </intent-filter> </activity> <activity android:name=".linked.LinkedActivity" android:screenOrientation="landscape" android:theme="@style/Base.AppTheme" /> <activity android:name=".player.PlayerActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|uiMode" android:label="@string/app_name" android:theme="@style/CustomImageCardTheme" /> </application> <compatible-screens> <screen android:screenDensity="xhdpi" android:screenSize="large" /> <screen android:screenDensity="xxxhdpi" android:screenSize="large" /> </compatible-screens> <uses-feature android:name="android.hardware.microphone" android:required="false" /> <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> <uses-feature android:name="android.software.leanback" android:required="true" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.INTERNET" /> </manifest>