美文网首页
关于如何 github分发企业包

关于如何 github分发企业包

作者: 3fbfd3c15df9 | 来源:发表于2019-08-04 15:14 被阅读0次

1, 首先我们上传 企业签名 ipa 到github

  1. 上传 ipa
  2. 上传 512 57 对应的图片
  3. 上传配置好的 plist
image.png

2. 关于plist文件的配置

image.png

3,接下来配置一个静态网页

下面的网页是随便下的一个 静态网页 。 核心代码是
<a href="itms-services://?action=download-manifest&url=https://www.keluosi.club/HIPKOO.plist">点击下载</a>.

<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, xxxxx xxxthe nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="itms-services://?action=download-manifest&url=https://www.keluosi.club/HIPKOO.plist">点击下载</a>.<br/>
Commercial support is available at
<a href="itms-services://?action=download-manifest&url=https://www.keluosi.club/HIPKOO.plist">下载</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>

搭建一个本地的 node.js 服务器 访问 使用下面的教程

https://github.com/XieTongXue/how-to/tree/master/node-server

把第三步的网页放在 node 服务器

本地访问node ,则访问localhost:8888/test/index.html
这里的localhost 替换本地电脑的 IP地址即可

相关文章

网友评论

      本文标题:关于如何 github分发企业包

      本文链接:https://www.haomeiwen.com/subject/rvrmdctx.html