Changing the App Package Name

This section will give you brief about how to change the app package name

How you can change the app package name

For Android

  1. Navigate to project >> android >> app >> build.gradle.
  2. Update both the namespace and applicationId fields with the new package name you want for the app
namespace "com.yourapp.newname"
applicationId "com.yourapp.newname"
  1. After making changes, close the file to save your updates.

Follow the video to change the app package name

For iOS

  1. Navigate to project >> ios, right-click on the ios folder, and select Open with Xcode.
  2. In Xcode, click on Runner in the project navigator.
  3. Under the General tab, locate the Bundle Identifier field.
  4. Click on the arrow next to it, which will take you to the full bundle identifier field.
  5. Replace the existing bundle identifier with your desired one, then press Enter to save the changes.

Follow the video to change bundle identifier