我有一款應用程序,可以通過S3存儲桶使用企業分發下載,它首次失敗並顯示正在加載,但當我使用配置實用程序手動安裝證書時將設備連接到計算機,同一網站鏈接開始工作。我正在使用Jenkins創建構建。無法在iOS設備上首次安裝企業內部分發應用程序
證書沒有自動安裝,我按照蘋果標準使用清單。我的清單文件的內容如下:
<?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>
的可能的複製[下載-點播服務應用內從 - 另一個-APP-編程](http://stackoverflow.com/questions/37156632/download-inhouse-app-from-another- APP-編程/ 37157308#37157308) –