【发布时间】:2016-06-08 09:54:47
【问题描述】:
我有一个可以使用 Enterprise Distribution 通过 S3 Bucket 下载的应用程序,它第一次失败并显示加载,但是当我通过将设备连接到计算机使用配置实用程序手动安装证书时,相同的网站链接开始工作。我正在使用 Jenkins 来创建构建。
证书没有自动安装,我按照苹果标准使用清单。我的清单文件内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://dev-ios-builds.mycompany.com/AppName-1.0-56-2016-06-07.66.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://dev-ios-builds.mycompany.com/images/Icon.png</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://dev-ios-builds.mycompany.com/images/iTunesArtwork.png</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.companyname.appname.dev</string>
<key>bundle-version</key>
<string>1.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>AppName Dev</string>
</dict>
</dict>
</array>
【问题讨论】:
标签: ios jenkins jenkins-plugins