iphone - Cannot distribute in-house iOS App "Cannot Open Page" Error iOS 7 -
<?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://app.company.com/myapp/app.ipa</string> </dict> </array> <key>metadata</key> <dict> <key>bundle-identifier</key> <string>com.company.*</string> <key>bundle-version</key> <string>1.0.0 (1.0.0)</string> <key>kind</key> <string>software</string> <key>title</key> <string>conference app</string> </dict> </dict> </array> </dict> </plist>
i trying access manifest file, download app on iphone.
i point manifest file not seems read on ios device:
<a href="itms-services://?action=download-manifest&url=main.com/manifest.plist">download </a>
the url
parameter of itms-services link needs escaped (you can't use / character, has %2f) , needs absolute url instead of relative url.
try changing to:
<a href="itms-services://?action=download-manifest&url=https%3a%2f%2fexample.com%2fapp%2fmanifest.plist">download projecta reports</a>
Comments
Post a Comment