Reputation: 2297
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
Upvotes: 4
Views: 2759
Reputation: 2297
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>
Linuix: https://docs.flutter.dev/deployment/linux
Upvotes: 6