Skip to content

How to Change the App Icon in BizMart Mobile App

The BizMart mobile app (Flutter-based) uses adaptive icons (Android) and multiple sizes (iOS). Here’s the correct and up-to-date way to replace the app icon with your own logo.

Location of Icon Files (Flutter Project)

BizMart

Step-by-Step: Change App Icon

  1. Prepare your logo:
  2. Square image, minimum 1024×1024 px
  3. Transparent background (PNG)
  4. Simple, bold design (looks good small)

  5. Go to this free tool:
    https://appicon.co

  6. Drag your 1024×1024 logo → Click Generate

  7. Download the zip → Extract

  8. Replace files:

  9. Android: Copy all mipmap-* folders → overwrite inside android/app/src/main/res/
  10. iOS: Copy the entire AppIcon.appiconset folder → overwrite inside `ios/Runner/Assets.xcassets/

  11. Rebuild the app: ```bash flutter clean flutter pub get flutter build apk # or flutter build ios