You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am facing double splash screen warning in google play store console pre-launch. Does anyone face similar issue?
Description
The crawler detected a blank loading screen or a custom splash screen that is shown in your app after the system splash screen. Users launching your app on Android 12 or higher will see 2 splash screens. To fix this issue, update your app to use the SplashScreen API.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<stylename="LaunchTheme"parent="@android:style/Theme.Light.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when the Flutter engine draws its first frame -->
<itemname="android:windowBackground">@drawable/launch_background</item>
<itemname="android:forceDarkAllowed">false</item>
<itemname="android:windowFullscreen">false</item>
<itemname="android:windowDrawsSystemBarBackgrounds">false</item>
<itemname="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started. This theme determines the color of the Android Window while your Flutter UI initializes, as well as behind your Flutter UI while its running. This Theme is only used starting with V2 of Flutter's Android embedding. -->
<stylename="NormalTheme"parent="@android:style/Theme.Light.NoTitleBar">
<itemname="android:windowBackground">?android:colorBackground</item>
</style>
</resources>
res/values-v31/styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<stylename="LaunchTheme"parent="@android:style/Theme.Light.NoTitleBar">
<itemname="android:forceDarkAllowed">false</item>
<itemname="android:windowFullscreen">false</item>
<itemname="android:windowDrawsSystemBarBackgrounds">false</item>
<itemname="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
<itemname="android:windowSplashScreenBackground">#BA000D</item>
<itemname="android:windowSplashScreenAnimatedIcon">@drawable/android12splash</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started. This theme determines the color of the Android Window while your Flutter UI initializes, as well as behind your Flutter UI while its running. This Theme is only used starting with V2 of Flutter's Android embedding. -->
<stylename="NormalTheme"parent="@android:style/Theme.Light.NoTitleBar">
<itemname="android:windowBackground">?android:colorBackground</item>
</style>
</resources>
The text was updated successfully, but these errors were encountered:
I am facing double splash screen warning in google play store console pre-launch. Does anyone face similar issue?
Description
The crawler detected a blank loading screen or a custom splash screen that is shown in your app after the system splash screen. Users launching your app on Android 12 or higher will see 2 splash screens. To fix this issue, update your app to use the SplashScreen API.
Configuration
Screenshots
Warning
AndroidManifest.xml
res/values/styles.xml
res/values-v31/styles.xml
The text was updated successfully, but these errors were encountered: