Member-only story
How to Change the Name of Your Flutter App on Android and iOS: A Step-by-Step Guide
Discover how to easily customize your Flutter app’s name on both Android and iOS platforms with this comprehensive guide, including screenshots!
Exciting, right? You’ve built a stunning Flutter app, but it’s time to give it the perfect name that represents its essence! Whether you’re rebranding your app or just making a small tweak, changing the app name on both Android and iOS is crucial. It gives your app a fresh identity, whether it’s for a new release, versioning, or marketing purposes. In this step-by-step guide, we’ll show you how to quickly and easily update your Flutter app’s name on both Android and iOS platforms, complete with clear instructions, paths, and helpful screenshots!
If you are a member, please continue, otherwise, read the full story here
Updating the Android App Name
To begin, let’s update the Android part of your Flutter project:
- Open the
android/app/src/main/AndroidManifest.xml
file. - Change the app’s label name.
Look for the<application>
tag and modify theandroid:label
attribute to match the new name.
<application
android:label="Your New App Name"
... >
</application>