Search code examples
fluttermacosdesktop

How to change app name in mac & linuix os desktop flutter application?


I have set my app name in the beginning of the project then wanted to change it after a while in mac & linuix os desktop flutter application


Solution

  • Mac os: open Info.plist file inside macos/Runner/Info.plist

    then edit product name from

    <key>CFBundleName</key> <string>$(PRODUCT_NAME)</string>

    to

    <key>CFBundleName</key> <string>The best project</string>

    enter image description here

    Linuix: https://docs.flutter.dev/deployment/linux

    enter image description here