Change App Name: from website to Flutter app
Change App Name explains how Wrapply converts a website, PWA, no-code project or AI-generated web app into a mobile app workflow. The guide covers website to app generation, Android APK, Google Play AAB, Flutter source code, PWA output, iOS preparation and managed publishing support.
Change App Name: from website to Flutter app
Change App Name explains how Wrapply converts a website, PWA, no-code project or AI-generated web app into a mobile app workflow. The guide covers website to app generation, Android APK, Google Play AAB, Flutter source code, PWA output, iOS preparation and managed publishing support.
Related localized tutorials
- Convert a website URL into an app-ready Flutter project with smart navigation.
- Understand when to choose APK, AAB, PWA, iOS support or full Flutter source code.
- Prepare app name, icon, description, keywords, privacy policy and store requirements.
- Use managed publishing when you want Wrapply to validate, customize and submit the app.
Wrapply Web to App
Change App Name explains how Wrapply converts a website, PWA, no-code project or AI-generated web app into a mobile app workflow. The guide covers website to app generation, Android APK, Google Play AAB, Flutter source code, PWA output, iOS preparation and managed publishing support.
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