Unwanted Letterboxing On Android

Hello,
I’ve posted this a while ago on the forums ([Forum Post][1]), without any response, maybe I’ll get some here.

Even clean projects have this issue:
When building for android and installing via the provided batch files, the game is always letterboxed only in landscape mode on android.(Shown in red)
In the project settings Immersive Mode is activated and increaed the maximum supported device aspect ratio and additionally tried different application and activity tags to set fullscreen and immersive, etc.
Without success.

But that only occurs, when the relatively new fullscreen gesture mode (since Android 9 or 10) is activated on the test device.
But every game installed from play store does fill the the whole screen, as expected, only my own projects won’t.
In the fullscreen settings on the device (Settings->Display->Fullscreen), every game has fullscreen enabled since their install, except my project. By activating it manually, the letterbox disappears.

So how can I enable the fullscreen by default, so that my players won’t experience that inconvience?

Note: My affected test device is a Xiaomi Mi9 T Pro, having a screen ratio of 2.1667 with MIUI 12 (Android 10).

Finally, found the solution:

add: android:maxAspectRatio=“2.4”
to the extra trags for “activity” or “application” inside the project settings.

Because apps need to be explicitly flagged to support a screen aspect ratio of 18:9.
For some reason the setting inside project settings (“Android>Maximum supportet aspect ratio”) has no effect.

On 4.25 there is a setting to force the game to go fullscreen. Search for the entry “Maximum supported aspect ratio” and set it to 2.4.

Thank you!