During a built in Google play console,I saw this
Fyi,tst
I am not using app studio v931
What is your question here?
From android 15 onwards,app have to enable edge to edge,which I do not know how to implement.hence,need nsb help,else, app might not be approved…best rdgs,tst
See this blog post from Cordova:
Added AndroidEdgeToEdge Preference Support
By default, Android 15 enforces the Edge-to-Edge feature, which may affect some Apache Cordova apps.
In this major release, Apache Cordova has opted out of the Edge-to-Edge feature to retain the original behavior and allow app developers ample time to make the necessary adjustments to support Edge-to-Edge.
Users can re-enable the Edge-to-Edge feature using this new preference flag.
It is expected that in Android’s next major release, opting out of Edge-to-Edge will no longer be possible.
Apache Cordova will continue to prepare for this expected future behavior change.
Added theme flag android:windowOptOutEdgeToEdgeEnforcement and default to true
Where should I put android:windowOptOutEdgeToEdgeEnforcement =true
Put in Config.xml or main function ?
I think you need to add this to the config.xml file:
<config-file target="app/src/main/res/values/themes.xml" parent="/resources/style[@name='Theme.App.SplashScreen']">
<item name="android:windowOptOutEdgeToEdgeEnforcement" xmlns:tools="http://schemas.android.com/tools" tools:targetApi="35">true</item>
</config-file>
```
Thanks a lot!, tst