bitrxjs opened a new issue, #1513:
URL: https://github.com/apache/cordova-ios/issues/1513
Command used for building and archiving
`cordova build ios --release --device --buildConfig=build.json`
**build.json**
```
{
"ios": {
"debug": {
"codeSignIdentity": "iPhone Developer",
"provisioningProfile": "xxxxxx-xxxx",
"developmentTeam": "9xYYY",
"packageType": "development"
},
"release": {
"codeSignIdentity": "iPhone Distribution",
"provisioningProfile": "yzzzz-zzzz.",
"developmentTeam": "9xYYY",
"packageType": "app-store"
}
}
}
```
### Manual process
Lets take release for eg.
- Copying the yzzzz-zzzz.mobileprovision to
~/Library/MobileDevice/Provisioning Profiles/
- Double clicking it cert file to add it to MacOS keychain, mentioned in
above .mobileprovision file.
If we now run the command
`cordova build ios --release --device --buildConfig=build.json`
it should create the archive.
Now the question how automate the above two steps? Can we provide the path
as input to these two files?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]