How to determine compiled iOS as Distribution > In House

安稳与你 提交于 2019-12-13 04:53:39

问题


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

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.


回答1:


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)



来源:https://stackoverflow.com/questions/33752454/how-to-determine-compiled-ios-as-distribution-in-house

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!