Is a code signing certificate required when developing for iOS locally? #6234
Replies: 7 comments 3 replies
-
I just gave it a bogus value and got TAURI_APPLE_DEVELOPMENT_TEAM=12345 pnpm tauri ios init |
Beta Was this translation helpful? Give feedback.
-
Same worked for me 😅 |
Beta Was this translation helpful? Give feedback.
-
Doesn't work anymore seems like the bogus method was patched |
Beta Was this translation helpful? Give feedback.
-
Do we know if we need to |
Beta Was this translation helpful? Give feedback.
-
Is it necessary to have a code signing certificate when running the {
...
"identifier": "shyam.chen.dev",
...
"bundle": {
"iOS": {
"developmentTeam": "Shyam Chen (Personal Team)"
},
...
} $ pnpm tauri ios build
> tauri "ios" "build"
> error: No account for team "Shyam Chen (Personal Team)". Add a new account in the Accounts preference pane or verify that your accounts have valid credentials.
> error: No profiles for 'shyam.chen.my-app' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'shyam.chen.my-app'. |
Beta Was this translation helpful? Give feedback.
-
I had the same problem yesterday, so I did this:
This just worked for me without editing any file or adding any environment variables. I hope it help you too. enjoy! 😃 |
Beta Was this translation helpful? Give feedback.
-
Just trying out first 2.0. The above didn't work; however if opened the |
Beta Was this translation helpful? Give feedback.
-
I wanted to check out the new mobile app development capabilities in the 2.0 alpha release, but when running
cargo tauri ios init
I get the following error:When checking the documentation I end up on the code signing page for MacOs which seems to relate to building and publishing applications rather than developing locally. Is there a similar page describing the necessary steps for developing an iOS app locally? Is a certificate even needed for development? A way around this would be great since Apple charges €99,- per year for a developer account.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions