Xgenious/ docs
Products
Get support

Updating Package Name & Bundle ID

A unique package name (Android) and bundle identifier (iOS) is required to publish your app.

A. Android Package Name

  1. Open android/app/build.gradle and look for applicationId:

    defaultConfig {
        applicationId "com.yourdomain.helpnest"
        ...
    }
    
  2. Update the folder structure in android/app/src/main/kotlin (or java) to match the new package path.

  3. Update the package name in android/app/src/main/AndroidManifest.xml.

Tip

[!TIP] You can use the popular Flutter package change_app_package_name to automate this step:

flutter pub run change_app_package_name:main com.yourdomain.helpnest

B. iOS Bundle ID

  1. Open the project in Xcode (ios/Runner.xcworkspace).
  2. Select the Runner root project in the left sidebar.
  3. Go to Signing & Capabilities tab.
  4. Update the Bundle Identifier to com.yourdomain.helpnest under the targets.
Still stuck?
Our support team is ready to help you get set up.
Get support