In my Cordova application that I created with Quasar, I use this CSS style:
padding-top: env(safe-area-inset-top, 0px);
padding-bottom: env(safe-area-inset-bottom, 0px);
padding-left: env(safe-area-inset-left, 0px);
padding-right: env(safe-area-inset-right, 0px);
box-sizing: border-box;
My app overflows into the bars at the top and bottom of the phone and is no longer usable. With Android 15, this no longer works.
I also tried adding this CSS style to no avail:
padding-top: constant(safe-area-inset-top)
padding-top: env(safe-area-inset-top)
padding-bottom: constant(safe-area-inset-bottom)
padding-bottom: env(safe-area-inset-bottom)