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:
- make sure you're using appropriate mobile provisioning profile.
- make sure server set serve
.plist
,.ipa
files mime-type ofapplication/octet-stream
. if not, ios device not able download them. - 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. - 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
Post a Comment