Android Question Google Store Warnings

kohlenach

Member
Licensed User
Hi, I get the following 3 warnings when I put an app bundle for production (translated from german to english):

1) At least one of the APIs or parameters you used to configure borderless and windowed display has been deprecated in Android 15. Your app uses the following deprecated APIs or parameters:

LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES
They start at the following locations:

androidx.activity.EdgeToEdgeApi28.adjustLayoutInDisplayCutoutMode
Migrate away from these APIs or parameters to resolve the issue.


2)
Remove resizing and orientation restrictions in your app to support devices with large displays
Starting with Android 16, Android will ignore resizing and orientation restrictions on devices with large displays, such as foldables and tablets. This can cause layout and usability issues for your users.

We have detected the following resizing and orientation restrictions in your app:

<activity android:name=".main" android:screenOrientation="PORTRAIT" />
Remove these restrictions to improve your app's usability. Then, test your app layouts on Android 16 and below to ensure they work across different display sizes and orientations.



3) The borderless display may not work for all users
 
Top