Android screen size support

Hi, is there anyway in Projucer to override these manifest settings, so as to only allow large screens, i.e. tablets?

supports-screens android:smallScreens=“true” android:normalScreens=“true” android:largeScreens=“true” android:anyDensity=“true”/

thx

bumpety

Thanks for the suggestion. We will add support for this shortly.

1 Like

Hi @leehu,

As mentioned in Breaking change: introducing custom AndroidManifest.xml content in Projucer Android exporter you can now achieve what you need by simply writing in Custom manifest XML content in Projucer the following:

<manifest>
<supports-screens android:xlargeScreens="true"/>
</manifest> 
1 Like

great, thanks!