Pablo
03/06/2025, 10:30 PMwindowSplashScreenAnimatedIcon
theme item? I'm adding splash screen api to customize the brand of the splash screen of an app, and in old android emulators (API 28 for example) the icon appears super big and cutted. I'm passing the main icon of the app, the one setted as icon on the application tag in manifest, @mipmap/ic_launcher:
<style name="Theme.App.Starting" parent="Theme.SplashScreen">
<item name="windowSplashScreenAnimatedIcon">@mipmap/ic_launcher</item>
Seems that is not the one should I pass it. But then, which one? supposedly is one already created, because if I don't implement splash screen API and let the OS doing it, the icon is being displayed correctly in any android device, so internally it must be referencing an already existing icon on my resources drawable folder.Rafael Moreira
03/07/2025, 3:06 AMChrimaeon
03/07/2025, 6:50 AMPablo
03/07/2025, 2:42 PM