안녕 난은 엔터프라이즈 응용 프로그램을 작성하고 난 보관함에 PLIST 및 HTML 파일을 업로드하지만 내 PLISTiOS8 Enterprise 애플리케이션 다운로드 링크 Safari에서 아무 것도 클릭하지 않습니까?
발생 사파리 아무것도 클릭
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- array of downloads. -->
<key>items</key>
<array>
<dict>
<!-- an array of assets to download -->
<key>assets</key>
<array>
<!-- software-package: the ipa to install. -->
<dict>
<!-- required. the asset kind. -->
<key>kind</key>
<string>software-package</string>
<!-- required. the URL of the file to download. -->
<key>url</key>
<string>https://dl.dropboxusercontent.com/s/ug5heuw6xknye4v/xx.ipa</string>
</dict>
<!-- display-image: the icon to display during download. -->
<dict>
<key>kind</key>
<string>display-image</string>
<!-- optional. icon needs shine effect applied. -->
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://dl.dropboxusercontent.com/s/70htok1w98emruq/AppIcon57x57.png</string>
</dict>
<!-- full-size-image: the large 512×512 icon used by iTunes. -->
<dict>
<key>kind</key>
<string>full-size-image</string>
<!-- optional. one md5 hash for the entire file. -->
<key>md5</key>
<string>61fa64bb7a7cae5a46bfb45821ac8bba</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://dl.dropboxusercontent.com/s/yh40pw50m5wa4mf/iTunesArtwork.png</string>
</dict>
</array>
<key>metadata</key>
<dict>
<!-- required -->
<key>bundle-identifier</key>
<string>com.company.product</string>
<!-- optional (software only) -->
<key>bundle-version</key>
<string>1.0</string>
<!-- required. the download kind. -->
<key>kind</key>
<string>software</string>
<!-- optional. displayed during download; -->
<!-- typically company name -->
<key>subtitle</key>
<string>Apple</string>
<!-- required. the title to display during the download. -->
<key>title</key>
<string>product name</string>
</dict>
</dict>
</array>
</dict>
내 HTML
<!DOCTYPE html>
<html>
<body>
<p>
<a href="itms-services://?action-download-manifest&url=https://dl.dropbox.com/s/4o5z1ha7d3sw9dm/xxx.plist">
click this link to install in DropBox
</a>
</p>
</body>
</html>
http를 https로 변경하고 새 인증서를 만들어 새 ipa를 만들고 배포 plist에서 번들 식별자를 변경하지만 iPad 기기에서 i를 클릭합니다. 아무 일도 일어나지 않습니다. 해결하기 위해 또는 ios8에 새로운 것이 엔터프라이즈 애플리케이션에서 변경된 경우
나는 이미 피곤하지 않다. 감사합니다. sven – sabeer