I am using the splash screen and want to have an image instead of a background color.
This is a compose project.
androidx.core:core-splashscreen:1.0.1
I am using the following
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.App.Starting" parent="Theme.SplashScreen">
<item name="windowSplashScreenBackground">@drawable/splash</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/ic_launcher_foreground</item>
<item name="postSplashScreenTheme">@style/Theme.BusbyNimbleSurvey</item>
</style>
</resources>
the splash is a png image and I have also tried with a webp. However, when testing it just a black background.
Is this possible?