AndroidManifest for NVIDIA Shield

I have a react-native app that I have been trying to get onto the Play Store. However once the app is reviewed, it is not available to be downloaded on the NVIDIA Shield. I have included a copy of my AndroidManifest.xml. Has anyone else run into this issue or know how I can fix it?

<manifest xmlns:android=“http://schemas.android.com/apk/res/android

package=“com.nativeplayer”>

<uses-sdk android:minSdkVersion="17" android:targetSdkVersion="29" />

<uses-permission android:name="android.permission.INTERNET" />

<supports-screens android:smallScreens="false"

                  android:normalScreens="false"

                  android:largeScreens="true"

                  android:xlargeScreens="false" />

<uses-feature android:name="android.software.leanback" android:required="true"/>

<uses-feature android:name="android.hardware.touchscreen" android:required="false" />

<uses-feature android:name="android.hardware.camera" android:required="false"/>

<uses-feature android:name="android.hardware.telephony" 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"/>

<application

  android:name=".MainApplication"

  android:label="@string/app_name"

  android:icon="@mipmap/ic_launcher"

  android:roundIcon="@mipmap/ic_launcher_round"

  android:allowBackup="false">

  <!-- TV Activity -->

  <activity 

    android:name=".MainActivity" 

    android:label="@string/app_name"

    android:banner="@drawable/banner"

    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>

  <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />

</application>