Android screen resolution

There is any way to configure screen resolution in Android?



Hud fonts and textures appears as if I was in old DOS games :slight_smile:



Desktop version ok.



Thank you

add that to your manifest and let the harness do the job

[xml]

<supports-screens

android:anyDensity=“true”

android:largeScreens=“true”

android:smallScreens=“true”

android:normalScreens=“true”

/>

[/xml]

(just before the “application” tag)

These are automatically added if you use the latest version of the SDK.