You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2016/10/24 20:34:45 UTC

[2/2] docs commit: CB-11860 - Add `packageType` to docs

CB-11860 - Add `packageType` to docs

 This closes #635


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

Branch: refs/heads/master
Commit: ce6a2f1d9aa89a4a1e88b5ca8c79f6f626913c2f
Parents: 67343ea
Author: Darryl Pogue <da...@ayogo.com>
Authored: Wed Oct 5 11:28:51 2016 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Mon Oct 24 13:34:36 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/ce6a2f1d/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 524d581..5684586 100644
--- a/www/docs/en/dev/guide/platforms/ios/index.md
+++ b/www/docs/en/dev/guide/platforms/ios/index.md
@@ -161,6 +161,7 @@ To sign an app, you need the following parameters:
 | 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.
+| Packaging Type           | `--packageType`          | This will determine what type of build is generated by Xcode. Valid options are `development` (the default), `enterprise`, `ad-hoc`, and `app-store`.
 
 ### Using build.json
 
@@ -174,12 +175,14 @@ build configuration file:
         "debug": {
             "codeSignIdentity": "iPhone Development",
             "provisioningProfile": "926c2bd6-8de9-4c2f-8407-1016d2d12954",
-            "developmentTeam": "FG35JLLMXX4A"
+            "developmentTeam": "FG35JLLMXX4A",
+            "packageType": "development"
         },
         "release": {
             "codeSignIdentity": "iPhone Distribution",
             "provisioningProfile": "70f699ad-faf1-4adE-8fea-9d84738fb306",
-            "developmentTeam": "FG35JLLMXX4A"
+            "developmentTeam": "FG35JLLMXX4A",
+            "packageType": "app-store"
         }
     }
 }


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