Android TV manifest improvements

This commit is contained in:
Sergii Pylypenko
2018-01-29 17:49:46 +02:00
parent 4c73f4c220
commit fc1bedf1ca

View File

@@ -73,6 +73,11 @@
<uses-feature android:name="android.software.leanback" android:required="false" /> <!-- Android TV requires this -->
<uses-feature android:name="android.hardware.microphone" android:required="false" /> <!-- Android TV requires this -->
<uses-feature android:name="android.hardware.gamepad" android:required="false"/> <!-- Android TV requires this -->
<uses-feature android:name="android.hardware.telephony" android:required="false"/> <!-- Android TV requires this -->
<uses-feature android:name="android.hardware.camera" android:required="false"/> <!-- Android TV requires this -->
<uses-feature android:name="android.hardware.nfc" android:required="false"/> <!-- Android TV requires this -->
<uses-feature android:name="android.hardware.location.gps" android:required="false"/> <!-- Android TV requires this -->
<uses-feature android:name="android.hardware.sensor" android:required="false"/> <!-- Android TV requires this -->
<!-- ==SCREEN-SIZE-SMALL== --> <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
<!-- ==SCREEN-SIZE-NORMAL== --> <supports-screens android:smallScreens="false" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
<!-- ==SCREEN-SIZE-LARGE== --> <supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" />