如何确定已编译的 iOS 为发行版 >内部 [英] How to determine compiled iOS as Distribution > In House

查看:29
本文介绍了如何确定已编译的 iOS 为发行版 >内部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

据我所知,我们可以将 iOS 发行版设置为临时,但如何远程构建以构建像内部 ipa 那样的发行版?

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

我遵循 http://taco.visualstudio.com/en-us/docs/tutorial-package-publish-readme/#ios 并且没有看到任何设置此工作流程的步骤.

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.

推荐答案

Cordova 已开始通过build.json"支持打包属性,您可以将其添加到项目的根目录中.打包文档此处,针对 Android 平台解释了这一点.

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.

对于 iOS,您必须参考同一文档才能获取代码签名身份 (.CER) 文件和配置文件(内部分发).您可以将它们添加到 build.json 中作为以下属性:

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 - 微软)

SOak (PM - Microsoft)

这篇关于如何确定已编译的 iOS 为发行版 >内部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆