Skip to content

Commit d010bc0

Browse files
authored
feat(ios): properly set iOS product name (#7554)
1 parent 6c38924 commit d010bc0

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

.changes/ios-product-name.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"tauri-cli": patch:feat
3+
"@tauri-apps/cli": patch:feat
4+
---
5+
6+
Set the iOS project PRODUCT_NAME value to the string under `tauri.conf.json > package > productName` if it is set.

examples/api/src-tauri/Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tooling/cli/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tooling/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ name = "cargo-tauri"
3939
path = "src/main.rs"
4040

4141
[dependencies]
42-
tauri-mobile = { version = "0.5.1", default-features = false }
42+
tauri-mobile = { version = "0.5.2", default-features = false }
4343
textwrap = { version = "0.11.0", features = [ "term_size" ] }
4444
jsonrpsee = { version = "0.16", features = [ "server" ] }
4545
jsonrpsee-core = "0.16"

tooling/cli/templates/mobile/ios/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ configs:
1010
settingGroups:
1111
app:
1212
base:
13-
PRODUCT_NAME: {{app.name}}
13+
PRODUCT_NAME: {{app.stylized-name}}
1414
PRODUCT_BUNDLE_IDENTIFIER: {{reverse-domain app.domain}}.{{app.name}}
1515
DEVELOPMENT_TEAM: {{apple.development-team}}
1616
targetTemplates:

0 commit comments

Comments
 (0)