chore(android): remove api check for setting top bottom insets (#16509)

* chore(android): remove api check for setting top bottom insets
This commit is contained in:
Calinteodor
2025-10-06 18:23:20 +03:00
committed by GitHub
parent 9d2f1ce8e0
commit ce567955f0

View File

@@ -96,9 +96,6 @@ public class JitsiMeetActivity extends AppCompatActivity
public static void addTopBottomInsets(@NonNull Window w, @NonNull View v) {
// Only apply if edge-to-edge is supported (API 30+) or enforced (API 35+)
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.R) return;
View decorView = w.getDecorView();
decorView.post(() -> {