-
-
Notifications
You must be signed in to change notification settings - Fork 293
Description
After uploading my app to Google Play, warnings are displayed.
Normally I would just ignore them, but I fear that my app will be hidden from users because of that.
Edge-to-edge may not display for all users
From Android 15, all apps targeting SDK 35 will display edge-to-edge by default. Apps targeting SDK 35 should handle insets to make sure that their app displays correctly on Android 15 and later. We recommend investigating this issue and allowing time to test edge-to-edge on your app and make the required updates to your code. Alternatively, call enableEdgeToEdge()
for Kotlin or EdgeToEdge.enable()
for Java for backward compatibility.
Your app uses deprecated APIs or parameters for edge-to-edge
One or more of the APIs you use or parameters that you set for edge-to-edge and window display have been deprecated in Android 15. Your app uses the following deprecated APIs or parameters:
android.view.Window.setNavigationBarColor
LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES
These start in the following places:
com.ansca.corona.CoronaActivity$5.run
com.ansca.corona.CoronaActivity.setStatusBarMode
To prepare for the change to Android 15, migrate away from these APIs or parameters.
Remove resizability and orientation restrictions in your game to support large screen devices
Your game doesn't support all display configurations, and uses resizability and orientation restrictions that may lead to layout issues for your users.
We detected the following resizability and orientation restrictions in your game:
<activity android:name="com.ansca.corona.CameraActivity" android:screenOrientation="PORTRAIT" />
<activity android:name="com.ansca.corona.CoronaActivity" android:screenOrientation="PORTRAIT" />
<activity android:name="com.ansca.corona.CoronaActivity" android:resizeableActivity="false" />
com.ansca.corona.purchasing.StoreActivity.onCreate
To improve the user experience of your game, remove these restrictions and check that your game layouts work on various screen sizes and orientations.