Android and Resolution

I am coding an in-house simulaiton/visualisation app currently running on Lenovo A1 which has a display resolution of 1024x600. However, the JMonkey Engine only runs with 569x320 pixels on it. I tried to set the resolution via settings, but this did not work. What might cause the problem?

Probably you doing something wrong. jME isn’t restricted in its resolution.

did you change the android manifest?



I think you need this or something:

[java]<supports-screens

android:anyDensity="true"

android:xlargeScreens="true"

android:largeScreens="true"

android:smallScreens="true"

android:normalScreens="true"

/>[/java]

1 Like

wezrule, thanks, this did the trick.