Prevent crash

This commit is contained in:
M66B 2024-06-01 17:56:42 +02:00
parent a2704a8035
commit 0bfd0d2a9b
1 changed files with 2 additions and 1 deletions

View File

@ -266,7 +266,8 @@ abstract class ActivityBase extends AppCompatActivity implements SharedPreferenc
controller.setAppearanceLightStatusBars(false);
controller.setAppearanceLightNavigationBars(false);
window.setNavigationBarColor(Color.TRANSPARENT);
window.setNavigationBarContrastEnforced(false);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q)
window.setNavigationBarContrastEnforced(false);
}
String requestKey = getRequestKey();