Change Package Name: from website to Flutter app
Change Package 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 Package Name: from website to Flutter app
Change Package 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 Package 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.
What is a package name?
The package name is the unique Android identifier of your app. For iOS, the equivalent is the Bundle Identifier.
They usually look like com.company.appname and must be unique before publishing.
Used by Android and Google Play to identify your app.
Used by Apple, Xcode and App Store Connect to identify the iOS app.
Change package name online
If the Wrapply builder exposes package configuration for your package, set it before generation. This is the safest approach because generated files start with the correct identifier.
Change package name from source code
In Flutter projects, Android and iOS identifiers are stored in platform-specific folders.
Check
android/app/src/main/AndroidManifest.xml.Check
android/app/build.gradle or android/app/build.gradle.kts.If native Android code exists, package folders may need to match the new identifier.
Open
ios/Runner.xcworkspace in Xcode and update Runner → Signing & Capabilities.com.jart.myapp
com.company.clientapp
com.brand.projectname
Recommended commands after changes
flutter pub get
flutter build apk --release
flutter build appbundle --release