erisu commented on pull request #823: URL: https://github.com/apache/cordova-ios/pull/823#issuecomment-630678261
@chriscant I want to confirm, What do you mean by > This incorrectly has > `PROVISIONING_PROFILE = profile name` > when it needs to have > `PROVISIONING_PROFILE_SPECIFIER = profile name` Because `PROVISIONING_PROFILE` is not the profile name. When configuring for manual signing in `build.json`, the `provisioningProfile` property contains the provisioning profile's `UUID` and not its name. If you are writing the name in this property, that is incorrect. When I read the changes from this PR, your are changing what the `provisioningProfile` value is suppose to be from what is documented. What you have written in code now is `PROVISIONING_PROFILE_SPECIFIER = UUID` when the `PROVISIONING_PROFILE_SPECIFIER` is the profile name. Here is the documentation on manual signing: https://cordova.apache.org/docs/en/latest/guide/platforms/ios/index.html#using-buildjson ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
