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: src/content/docs/distribute/app-store.mdx
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,20 @@ The value provided in the _Bundle ID_ field **must** match the identifier define
47
47
48
48
The Tauri CLI can package your app for macOS and iOS. Running on a macOS machine is a requirement.
49
49
50
+
Tauri derives the [`CFBundleVersion`](https://developer.apple.com/documentation/bundleresources/information-property-list/cfbundleversion) from the value defined in [`tauri.conf.json > version`].
51
+
You can set a custom bundle version in the [`tauri.conf.json > bundle > ios > bundleVersion`] or [`tauri.conf.json > bundle > macOS > bundleVersion`] configuration
52
+
if you need a different bundle version scheme e.g. sequential codes:
53
+
54
+
```json title="tauri.conf.json" ins={4}
55
+
{
56
+
"bundle": {
57
+
"ios": {
58
+
"bundleVersion": "100"
59
+
}
60
+
}
61
+
}
62
+
```
63
+
50
64
:::caution
51
65
Code signing is required. See the documentation for [macOS][macOS code signing] and [iOS][iOS code signing].
0 commit comments