Any other way to set developer team for tauri ios? #8325
-
I read previous discussion where someone said to put any bogus value in "tauri": { "bundle": { "iOS": { "developmentTeam": "12345"}}} but i don't want to commit this to a public repo, not sure if it is safe to do so? i did it like this $ APPLE_DEVELOPMENT_TEAM="12345" pnpm tauri ios init
$ APPLE_DEVELOPMENT_TEAM="12345" pnpm tauri ios dev even tried exporting $ export APPLE_DEVELOPMENT_TEAM=12345 i'm on |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Why wouldn't it be? Assuming you're setting a bogus value why would it matter? But even if it's the actual value of your dev team, afaik there are no real risks with that (or it wouldn't be in the config). That said, the env var you showed should do the same. If you're on an older tauri version is may still be called |
Beta Was this translation helpful? Give feedback.
Why wouldn't it be? Assuming you're setting a bogus value why would it matter? But even if it's the actual value of your dev team, afaik there are no real risks with that (or it wouldn't be in the config).
That said, the env var you showed should do the same. If you're on an older tauri version is may still be called
TAURI_APPLE_DEVELOPMENT_TEAM
though