Android icon on startup and not Splash screen - not working

Godot Version

4.3

Question

How can I change startup of Android exports? I just want a blank or solid colour instead of the icon showing and a light grey background OR nothing and it just starts with my Splash screen.

It is Ugly and not at all normal. Every other app on my phone does not have this.

I have exported my game to Android multiple times with multiple settings. I have tried gradle build and all. I have tried to use adaptive fore and background. Nothing seems to work.

This is a screenshot of the problem:
Imgur

This is a video of the problem:

How can I fix this? Either through settings or do I need to edit the grade build? If I need to edit the gradle build style.xml, how do I go about this?

It seems I was on the right track, I just needed to edit the themes.xml file in the gradle template build and change the colour of the background with a hex colour and set the icon to transparent.

Like this:

<item name="android:windowSplashScreenBackground">#000000</item>

	<item name="windowSplashScreenAnimatedIcon">@android:color/transparent</item>

Hope this helps someone in the future!