Change app name in Flutter
Hi Coders,
Have you ever tried to change the app name because when you first create an app and when you will try to published in Google Play Store or App Store then you might gets a problem while register the app name Such that the App Name you are thinking could be taken already and suppose you changed the app name in store but in your app showing different name when downloaded then its worst So let's change the app name with simple steps,
Yes you heard it right
You just need to changed app name in 2 place and you will be done and here i am talking about only the mobile application and not the web or desktop applications
Let's jump to the code
1.Android:
Go to android manifest file of your project ( )
<application
android label="Testing_app"
Change into:
<application
android label="Codemicros"
2.Ios
Go to info.plist file of your project
<dict
<key>CFBundleDisplayName</key>
<string>Testing app</string>Change Into:
<dict
<key>CFBundleDisplayName</key>
<string>Codemicros</string>