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
- Navigate to
project >> android >> app >> build.gradle
. - 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"
- After making changes, close the file to save your updates.
Follow the video to change the app package name
For iOS
- Navigate to
project >> ios
, right-click on the ios folder, and select Open with Xcode. - In Xcode, click on Runner in the project navigator.
- Under the General tab, locate the Bundle Identifier field.
- Click on the arrow next to it, which will take you to the full bundle identifier field.
- Replace the existing bundle identifier with your desired one, then press Enter to save the changes.
Follow the video to change bundle identifier