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