-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
fix(cli): wrong export methods for iOS building (#11092) #13255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
Package Changes Through d177f7cThere are 3 changes which include @tauri-apps/cli with patch, tauri-cli with patch, tauri with patch Planned Package VersionsThe following package releases are the planned based on the context of changes in this pull request.
Add another change file through the GitHub UI by following this link. Read about change files or the docs at github.com/jbolda/covector |
if you run
so maybe you're running an older Xcode and we need to support both options? |
we should follow this approach and check the xcode version: https://github.com/flutter/flutter/pull/150407/files#diff-3596e48384307eec1b7905c5b22e524a9f7f9f1b6439e6ecfa2257fb1f2e8c28R584 |
@jmilesj i just pushed a change, can you verify it still works for you? |
@lucasfernog yes, you are right. The issue was with XCode 15.2. I have tested your updates with both 15.2 and 16.2, they work smoothly! Very appreciated we got both options available here! 👍 |
Current export methods for iOS building is not correct, closes #11092
According to https://developer.apple.com/documentation/xcode/distributing-your-app-for-beta-testing-and-releases#Create-a-custom-distribution, the full list of available options are:
app-store
)ad-hoc
)enterprise
)development
)validation
, not documented, but Apple says it's a legal option if we try to create an achieve via cli)Unfortunately, the documentation from Apple and the actual behavior does not match.
Given that one can only pick the four options from the
Organizer
app when uploading an app to app store connect, I'm defining export methods only with those four.