You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Suraj Pindoria (JIRA)" <ji...@apache.org> on 2017/09/27 23:17:00 UTC

[jira] [Resolved] (CB-13315) XCode 9 fails export when using explicit provisioning profile and/or certificate

     [ https://issues.apache.org/jira/browse/CB-13315?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Suraj Pindoria resolved CB-13315.
---------------------------------
    Resolution: Fixed

> XCode 9 fails export when using explicit provisioning profile and/or certificate
> --------------------------------------------------------------------------------
>
>                 Key: CB-13315
>                 URL: https://issues.apache.org/jira/browse/CB-13315
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: cordova-ios
>         Environment: * XCode 9
>            Reporter: Mark van Beek
>            Assignee: Shazron Abdullah
>            Priority: Blocker
>
> When building with explicit signing the build fails because the signing information is missing from the exportOptions.plist.
> A fix for this could be to update cordova-ios/bin/templates/scripts/cordova/lib/build.js with the following:
> add: {code:javascript}var projectFile = require('./projectFile');{code} on line 29
> add: {code:javascript}var self = this;{code} on line 58
> add:
> {code:javascript}
>         var project = projectFile.parse(self.locations);
>         var pkgName = project.getPackageName();
>         if (pkgName && buildOpts.provisioningProfile) {
>             exportOptions.provisioningProfiles = {[pkgName]: buildOpts.provisioningProfile};
>             exportOptions.signingStyle = 'manual';
>         }
>         if (buildOpts.codeSignIdentity) {
>             exportOptions.signingCertificate = buildOpts.codeSignIdentity;
>         }
> {code}
> on line 141
> Line numbers refer to commit 7ab03155c2e44c94a0a284f32192ad6f264a6c0e



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org