Skip to content

Commit

Permalink
feat(ios): properly set iOS product name (#7554)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog authored Aug 5, 2023
1 parent 6c38924 commit d010bc0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .changes/ios-product-name.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"tauri-cli": patch:feat
"@tauri-apps/cli": patch:feat
---

Set the iOS project PRODUCT_NAME value to the string under `tauri.conf.json > package > productName` if it is set.
1 change: 1 addition & 0 deletions examples/api/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions tooling/cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tooling/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ name = "cargo-tauri"
path = "src/main.rs"

[dependencies]
tauri-mobile = { version = "0.5.1", default-features = false }
tauri-mobile = { version = "0.5.2", default-features = false }
textwrap = { version = "0.11.0", features = [ "term_size" ] }
jsonrpsee = { version = "0.16", features = [ "server" ] }
jsonrpsee-core = "0.16"
Expand Down
2 changes: 1 addition & 1 deletion tooling/cli/templates/mobile/ios/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ configs:
settingGroups:
app:
base:
PRODUCT_NAME: {{app.name}}
PRODUCT_NAME: {{app.stylized-name}}
PRODUCT_BUNDLE_IDENTIFIER: {{reverse-domain app.domain}}.{{app.name}}
DEVELOPMENT_TEAM: {{apple.development-team}}
targetTemplates:
Expand Down

0 comments on commit d010bc0

Please sign in to comment.