PM-23136: Android 10 crash hotfix (#5447)

This commit is contained in:
David Perez 2025-06-30 13:09:05 -05:00 committed by GitHub
parent b5b022caaa
commit e8878d3215
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Always -->
<integer name="displayCutoutMode">3</integer>
</resources>

View File

@ -6,7 +6,7 @@
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionModeOverlay">true</item>
<item name="android:windowLayoutInDisplayCutoutMode">always</item>
<item name="android:windowLayoutInDisplayCutoutMode">@integer/displayCutoutMode</item>
<item name="android:backgroundDimAmount">@dimen/dialogDimBackgroundAmount</item>
</style>

View File

@ -1,4 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="dialogDimBackgroundAmount" format="float">0.55</dimen>
<!-- default -->
<integer name="displayCutoutMode">0</integer>
</resources>