[ 
https://issues.apache.org/jira/browse/CB-13315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16183418#comment-16183418
 ] 

ASF subversion and git services commented on CB-13315:
------------------------------------------------------

Commit cf424b46fb37c00395c1ee9a249280efee5f65b5 in cordova-ios's branch 
refs/heads/master from Horton
[ https://gitbox.apache.org/repos/asf?p=cordova-ios.git;h=cf424b4 ]

CB-13315: (ios) fixed bug building for ios using Xcode 9


> 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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to