Updating Package Name & Bundle ID
A unique package name (Android) and bundle identifier (iOS) is required to publish your app.
A. Android Package Name
-
Open
android/app/build.gradleand look forapplicationId:defaultConfig { applicationId "com.yourdomain.helpnest" ... } -
Update the folder structure in
android/app/src/main/kotlin(or java) to match the new package path. -
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
- Open the project in Xcode (
ios/Runner.xcworkspace). - Select the Runner root project in the left sidebar.
- Go to Signing & Capabilities tab.
- Update the Bundle Identifier to
com.yourdomain.helpnestunder the targets.
Still stuck?
Our support team is ready to help you get set up.

