v3.2.3: last minute Android fixes and re-upped version code for Android:

- fixed crashes on Android 9 and 10 by swapping to 'shortEdges' cutout mode ('always' cutout display mode wasn't present in these versions)
- upped fullscreen check to Android 9+, assume navbar exists in prior versions
- fixed navbar inset always being ignored in Android 9-14
This commit is contained in:
Evan Debenham
2025-08-31 23:34:56 -04:00
parent 861f28c465
commit 4f9bf8cc7f
4 changed files with 8 additions and 8 deletions

View File

@@ -3,7 +3,7 @@
<!-- Newer Material translucent theme for Android 9+ that lets them go true fullscreen -->
<style name="GameTheme" parent="@android:style/Theme.Material.NoActionBar.TranslucentDecor">
<item name="android:windowLayoutInDisplayCutoutMode">
always <!-- For Android 14- devices, edge-to-edge is automatic for Android 15+ -->
shortEdges <!-- For Android 14- devices. Edge-to-edge is automatic for Android 15+ -->
</item>
</style>
</resources>