0

I want to change the logo of my app but I dont know whats the right format to use. For Example when my Logo is the Apple logo. Should I use a jpeg file with a background color or should I only use a png of the Apple and add a background color later on?

Dalon
  • 566
  • 8
  • 26
  • Does this answer your question ? [chage the application launcher icon](https://stackoverflow.com/a/52829977/14343554) – Aayush Shah Aug 02 '21 at 18:55

4 Answers4

3

There are standards for everything, when you are in a confusion you should always look for those.

iOS's standards: https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/app-icon/

Android's standards: https://developer.android.com/studio/write/image-asset-studio

zeed
  • 285
  • 1
  • 5
  • 18
Ward Suleiman
  • 381
  • 2
  • 10
3

Flutter Launcher Icons has been designed to help quickly generate launcher icons.

https://pub.dev/packages/flutter_launcher_icons

  • Add the package to your pubspec.yaml file (within your Flutter project) to use it.
  • Within pubspec.yaml file, specify the path of the icon you wish to use for the app.
  • Run the package.
Karan Owalekar
  • 947
  • 10
  • 31
0

mipmap folder to change image in android app logo change enter image description here

0

Uploading your application to App Store normally requires a jpg with a background, or a png with extra configuration line in case you use flutter_launcher_icons as suggested above - Setting "remove_alpha_ios: true" to remove it.