We’re using Zoom Android SDK v6.5.6.31810
in an app targeting Android 15 (SDK 35). On Android 15, apps are required to explicitly opt out of edge-to-edge layout using:
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
This flag is set correctly in our theme, and we’ve also applied it to Zoom-related activities, including:
<activity android:name="us.zoom.sdk.NewMeetingActivity" ... />
<activity android:name=".ui.APIUserStartJoinMeetingActivity" ... />
However, the Zoom UI still overlaps with the system status bar — for example, on the video preview screen. This suggests that the SDK does not currently support the opt-out mechanism or handle WindowInsets
as expected on Android 15.
Questions:
-
Is this a known limitation in v6.5.6.31810?
-
Is there a supported way to disable edge-to-edge layout for Zoom UI?
-
Will this be addressed in future SDK versions?
Thanks in advance.