Repository: cordova-docs
Updated Branches:
  refs/heads/master 1f1a47e89 -> ce6a2f1d9


CB-11851 - Docs for developmentTeam key in build.json


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/67343ea0
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/67343ea0
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/67343ea0

Branch: refs/heads/master
Commit: 67343ea0b4b64b5f13dd0d4e3498486d3d6ca735
Parents: 1f1a47e
Author: Shazron Abdullah <shaz...@apache.org>
Authored: Wed Sep 14 17:53:47 2016 -0700
Committer: Shazron Abdullah <shaz...@apache.org>
Committed: Mon Oct 24 13:34:35 2016 -0700

----------------------------------------------------------------------
 www/docs/en/dev/guide/platforms/ios/index.md | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/67343ea0/www/docs/en/dev/guide/platforms/ios/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/dev/guide/platforms/ios/index.md 
b/www/docs/en/dev/guide/platforms/ios/index.md
index febc348..524d581 100644
--- a/www/docs/en/dev/guide/platforms/ios/index.md
+++ b/www/docs/en/dev/guide/platforms/ios/index.md
@@ -160,6 +160,7 @@ To sign an app, you need the following parameters:
 | Code Sign Identity       | `--codeSignIdentity`     | Code signing identity 
to use for signing. It can be created with Xcode and added to your keychain.
 | Provisioning Profile     | `--provisioningProfile`  | GUID of the 
provisioning profile to be used for signing. It is copied here on your Mac: 
```~/Library/MobileDevice/Provisioning\ Profiles/```. Opening it in a text 
editor, you can find the GUID which needs to be specified here.
 | Code Sign Resource Rules | `--codesignResourceRules`| (Optional) Used to 
control which files in a bundle should be sealed by a code signature. For more 
details, read [The OS X Code Signing In Depth 
article](https://developer.apple.com/library/mac/technotes/tn2206/_index.html#//apple_ref/doc/uid/DTS40007919-CH1-TNTAG206)
+| Development Team         | `--developmentTeam`      | This is new for Xcode 
8. The development team ([Team 
ID](https://developer.apple.com/account/#/membership/)) to use for code 
signing. You would use this setting and a simplified Code Sign Identity (i.e. 
just 'iPhone Developer') to sign your apps, you do not need to provide a 
Provisioning Profile.
 
 ### Using build.json
 
@@ -172,11 +173,13 @@ build configuration file:
     "ios": {
         "debug": {
             "codeSignIdentity": "iPhone Development",
-            "provisioningProfile": "926c2bd6-8de9-4c2f-8407-1016d2d12954"
+            "provisioningProfile": "926c2bd6-8de9-4c2f-8407-1016d2d12954",
+            "developmentTeam": "FG35JLLMXX4A"
         },
         "release": {
             "codeSignIdentity": "iPhone Distribution",
-            "provisioningProfile": "70f699ad-faf1-4adE-8fea-9d84738fb306"
+            "provisioningProfile": "70f699ad-faf1-4adE-8fea-9d84738fb306",
+            "developmentTeam": "FG35JLLMXX4A"
         }
     }
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org

Reply via email to