Fullscreen orientation (Android)


By default, fullscreen orientation is landscape. To change it, change the defaultFullscreenOrientation runtime parameter in the PlayerParameters object.

Possible values are: Landscape, ReverseLandscape, Portrait or ReversePortrait.

val playerParameters = PlayerParameters(
       defaultFullscreenOrientation = Orientation.ReversePortrait // Set the default fullscreen orientation to reverse portrait
)

Check the dedicated guide to see how to use runtime parameters on the Android SDK .