I used `fastlane deliver` today for uploading two apps build with Xcode 10
without problems. The only thing that needed to be changed so the signing was
working was to change the `ProvisioningStyle` to `Manual` in all
`project.pbxproj` files. Then you can set your `codeSignIdentity` and
`provisioningProfile` via your `build.json`.
```js
sh.sed(
'-i',
/ProvisioningStyle = Automatic/,
'ProvisioningStyle = Manual',
'platforms/ios/**/project.pbxproj'
);
```
[ Full content available at: https://github.com/apache/cordova-ios/issues/412 ]
This message was relayed via gitbox.apache.org for [email protected]