...
Copy and paste the code below into your new build.json file:
...
Code Block | ||||
---|---|---|---|---|
| ||||
{ "ios": |
...
{ "debug": |
...
{ "codeSignIdentity": |
...
"iPhone Development", |
...
"provisioningProfile": |
...
"<UUID of the provisioning profile>", |
...
"provisioningProfileFile": |
...
"ProvisioningProfileFileName.mobileprovision", |
...
"certificateFile" |
...
: |
...
"CertificateFileName.p12" |
...
} }, "ios": |
...
{ "release": |
...
{ "codeSignIdentity": |
...
"iPhone Distribution", |
...
"provisioningProfile": |
...
" |
...
<UUID of the provisioning |
...
profile>", "provisioningProfileFile": |
...
"ProvisioningProfileFileName.mobileprovision", |
...
"certificateFile" |
...
: |
...
"CertificateFileName.p12" |
...
} } } |
Info |
---|
Note: This example shows iOS only, however you can include multiple operating systems within the one build.json, simply by adding the appropriate JSON structure for "android" or "windows" to the build.json file. |
...