Which icon passes by default the splash screen API...
# android
p
Which icon passes by default the splash screen API to
windowSplashScreenAnimatedIcon
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:
Copy code
<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.
not kotlin but kotlin colored 2
r
c
Image from iOS.jpg
p
@Rafael Moreira I think they don't say it there, they says uses app icon, but as I told in the question, I used the app icon, taken from manifest, and it's very big, it's being cutted