You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/tutorials/advanced/MobileDeployment/04_publishing/index.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,20 @@ Ensure your iOS project is properly configured for App Store submission:
33
33
<CFBundleIconName>AppIcon</CFBundleIconName>
34
34
```
35
35
36
+
### Understanding the Bundle Identifier
37
+
38
+
The **bundle identifier** is a unique string that identifies your app. It follows a reverse domain name notation, such as `com.companyname.gamename`.
39
+
40
+
This identifier is used by Apple and Google to distinguish your app from all others on the stores and on devices.
41
+
42
+
- It **must** be unique across all apps in the store.
43
+
44
+
- The bundle identifier you set in your project must exactly match the one registered in the stores.
45
+
46
+
- Changing the bundle identifier after publishing will create a new app entry, not update the existing app.
47
+
48
+
**Tip:** Choose a bundle identifier that reflects your organization and app name, and keep it consistent across your project files and provisioning profiles.
49
+
36
50
#### Code Signing for Release
37
51
38
52
Two entitlements - one for debug and one for publication.
0 commit comments