Wrong icon size is generated for splash screen
I'm trying to generate icon and splash screen for my android app, but the icon in the splash screen gets cropped:
It seems like the color isn't correct on the splash screen background either. I'm using the following command to generate the assets:
npx capacitor-assets generate --iconBackgroundColor '#EDC22E' --splashBackgroundColor '#EDC22E' --assetPath 'public/images' --logoSplashScale 0.1
From what I can tell "logoSplashScale" doesn't do anything either.
Same issue experienced on my end.
Treating 0.1 like a string "0.1" made a difference. :)
I am experiencing the same issue, --iconBackgroundColor and --logoSplashScale params are not working, they have no impact on the output logo and splashscreen ("@capacitor/assets": "2.0.4"), no matter if I put the scale number as a string or not as @gklasen suggested