Change app name online and from Flutter source code
Use Wrapply online builder to set the app name before generation, or update it later from Flutter source code, Android files and iOS configuration.
Change app name online
In the Wrapply online builder, you can set the app name before generation. This is the easiest option when you want the generated APK, AAB or source code to start with the correct visible name.
Enter your website URL
Start from the website, PWA or web app you want to convert.
Set the app name
Use a clean name with the first letter uppercase, for example My App instead of my app.
Generate your files
Wrapply generates the app files using the selected app name.
Change app name from Flutter source code
If you already received the Flutter source code, update the app name in the Flutter configuration and in platform-specific files.
Search inside
lib/main.dart for the app name variable or app title used by the generated project.Check
android/app/src/main/AndroidManifest.xml and Android string resources if present.Check
ios/Runner/Info.plist and update CFBundleDisplayName or related display name fields.Use capitalization correctly because this is what users see below the app icon.
lib/main.dart
android/app/src/main/AndroidManifest.xml
android/app/src/main/res/values/strings.xml
ios/Runner/Info.plist
After changing the name
Rebuild the app so Android and iOS receive the updated name.
flutter pub get
flutter build apk --release
flutter build appbundle --release
flutter build ipa --release