Doesn't matter what I do, Play Console always shows a warning on my pre-launch report:
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.
I followed the instructions from https://developer.android.com/develop/ui/views/launch/splash-screen and https://developer.android.com/reference/kotlin/androidx/core/splashscreen/SplashScreen but nothing works... The warning is always there.
I suspect this is a false positive. When I watch the innumerous videos that the pre-report gives me "showing" the issue, there's absolutely nothing wrong, no double splash screens nor anything...
Has anyone seen this? How to solve it?
"Double splash screen" warning on google play console is triggered when using splash screen API together with activity that have only one view (e.g. some kind of animation).
If you want to keep your animation screen (old splash screen) for any reason (like loading ads or else), just put another view on that activity, for example progress bar.
That will suppress Play console to mark that activity as splash screen and warning will gone away.