JimiOr2
JimiOr2

Reputation: 342

How to determine compiled iOS as Distribution > In House

As I know we could setup iOS distribution as ad hoc, but how to remotebuild to build as distribution as in house ipa?

enter image description here

I follow the http://taco.visualstudio.com/en-us/docs/tutorial-package-publish-readme/#ios and didn't see any step to setup this workflow.

Upvotes: 0

Views: 210

Answers (1)

Subhag Oak
Subhag Oak

Reputation: 1654

Cordova has started supporting packaging properties through "build.json" which you can add at the root of your project. The packaging document here, explains this for Android platform.

For iOS, you will have to refer to the same document to get the Code-Signing Identity (.CER) file and the Provisioning Profile (In house distribution). The you can add those into build.json as following properties:

{
  "ios" : {
      "release" : { 
         "codeSignIdentity" : "[complete path to downloaded .CER file]"
         "provisioningProfile" : "[complete path to the downloaded provisioning profile]"
       }   
  }
}

Let me know if you have problems with this.

SOak (PM - Microsoft)

Upvotes: 1

Related Questions