Wrapply logoWrapply Tutorials
🏷️ Package name and Bundle ID

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.

🌍 Wrapply multilingual tutorial

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.

Android package name
Used by Android and Google Play to identify your app.
iOS Bundle ID
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.

Once an app is published on Google Play or App Store, changing package name or Bundle ID means creating a different app entry.

Change package name from source code

In Flutter projects, Android and iOS identifiers are stored in platform-specific folders.

Android Manifest
Check android/app/src/main/AndroidManifest.xml.
Gradle namespace/applicationId
Check android/app/build.gradle or android/app/build.gradle.kts.
Kotlin/Java path
If native Android code exists, package folders may need to match the new identifier.
iOS Bundle Identifier
Open ios/Runner.xcworkspace in Xcode and update Runner → Signing & Capabilities.
Example identifiers:
com.jart.myapp
com.company.clientapp
com.brand.projectname

Recommended commands after changes

flutter clean
flutter pub get
flutter build apk --release
flutter build appbundle --release