cordova - iPhone Distribution Download Issue -


i'm having trouble in-house enterprise app distribution apple provides. i've obtained enterprise certificate , got necessary files (p12, manifest, etc) , built app through phonegap build. problem i'm having right i'm unable download file server i've uploaded onto. whenever attempt phone, gives me error "safari cannot download file". due sort of certification issue?

i've experienced number of problems enterprise deployment scheme myself. there number of things want make sure of:

  1. make sure you're using appropriate mobile provisioning profile.
  2. make sure server set serve .plist , .ipa files mime-type of application/octet-stream. if not, ios device not able download them.
  3. in .plist file, make sure <string> property under <key>url</key> contains full path .ipa file. download file through web-browser. less won't work.
  4. install app using application specific uri of form itms-services://?action=download-manifest&url=http://yourserver.com/path/your.plist yourserver.com domain name of server, path path directory on our server, , your.plist name of .plist file.

Comments