Rename your app (by default itβs NextNative)
iOS
π‘
Don't forget to run the following command whenever you make changes to the code before deploying:
npm run mobile
- Open your project in Xcode by running:
npx cap open ios
- Select the App project, and double-click the App target to rename. Rename Bundle Identifier to be com.[yourappnamelowercase].app:

- Open Info tab, go to Bundle display name and rename there.

- Then, open ios/App/Podfile and rename the current target at the bottom of the file: οΏΌ

- And also in capacitor.config.js:

Learn more in Capacitor docs (opens in a new tab)
Android
π‘
Don't forget to run the following command whenever you make changes to the code before deploying:
npm run mobile
- To change your app's Package ID (aka Application ID for Android), edit applicationId at the top of android/app/build.gradle:
defaultConfig {
- applicationId "com.nextnative.app"
+ applicationId "com.mycompany.app"
}
- To change the name of your app, change the value for app_name and title_activity_main in strings.xml:
<string name="app_name">MyApp</string>
<string name="title_activity_main">MyApp</string>
- And also in capacitor.config.js:

Learn more in Capacitor docs (opens in a new tab)