Skip to content

Commit ae32fb9

Browse files
docs: Add section for bundleVersion property
1 parent b75602a commit ae32fb9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/content/docs/distribute/app-store.mdx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,20 @@ The value provided in the _Bundle ID_ field **must** match the identifier define
4646

4747
The Tauri CLI can package your app for macOS and iOS. Running on a macOS machine is a requirement.
4848

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+
4963
:::caution
5064
Code signing is required. See the documentation for [macOS][macOS code signing] and [iOS][iOS code signing].
5165
:::

0 commit comments

Comments
 (0)