Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the MIME type for .mobileprovision

What is the correct MIME type (IIS) for a .mobileprovision file type? Am I thinking of this the right way? If I have to connect everybody's device to the mac dev machine to install the .mobileprovision file, it kind of defeats the purpose of the wireless ad hoc distribution method.

like image 840
jdb1a1 Avatar asked Feb 23 '23 01:02

jdb1a1


1 Answers

If there is no specific MIME-Type, you may simply use application/octet-stream it will work.


Note anyway that the AdHoc distribution method (Over The Air distribution) does not need you to provide a .mobileprovision file. At least for my case, I already did multiple OTA distributions and never provided the users a .mobileprovision file.

From Xcode, simply choose "Build & Archive", then once the build is archived in your "Archived Applications" in your Organizer window, simply use the "Share…" button and choose "Distribute for Enterprise".

It will create a .plist file and the .ipa file. Then put all that on your server and create a link to "itms-services://?action=download-manifest&url=http://url.to.your/app.plist" on your web page. When users will follow the link from their iPhone, iOS will prompt for OTA installation of your app.

Note: If you want more info, sSearch the web or SO for "OTA Distribution", there are detailed articles about this including screenshots and examples.

like image 177
AliSoftware Avatar answered Mar 20 '23 12:03

AliSoftware