-
Notifications
You must be signed in to change notification settings - Fork 17
Add support for automatic signing style #248
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
Conversation
| codeSigningStyle SigningStyle, | ||
| xcodeMajorVersion int64, | ||
| ) (exportoptions.ExportOptions, error) { | ||
| mainTargetBundleID, entitlementsByBundleID, err := g.applicationTargetsAndEntitlements(exportMethod) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code from the previous g.generateExportOptions moved here and the first part of the code is moved into the new applicationTargetsAndEntitlements.
| @@ -0,0 +1,21 @@ | |||
| package exportoptionsgenerator | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved here from exportoptionsgenerator/exportoptionsgenerator.go without any change.
| @@ -0,0 +1,73 @@ | |||
| package exportoptionsgenerator | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved here from exportoptionsgenerator/exportoptionsgenerator.go, the single change is adding GetDefaultProvisioningProfile to ProvisioningProfileProvider, previously this functionality was assigned to ExportOptionsGenerator.
| @@ -0,0 +1,75 @@ | |||
| package exportoptionsgenerator | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved here from exportoptionsgenerator/exportoptionsgenerator.go without any change.
This PR reorganizes the files in the
exportoptionsgeneratorpackage and adds support for the automatic signing style.The
exportoptionsgeneratorpackage new organisation:ExportOptionsGeneratordependencies are moved to their own files, to shorten the code inexportoptionsgenerator.goAutomatic signing style support:
provisioningProfilesentry shouldn't be in the exportOptions.plist when the IPA export is Xcode managed