Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error when distributing an IPA over the air with dropbox - iOS 7.1

As Apple requested to use https instead of http for distributing the IPAs over the air, I tried to use dropbox. I followed this solution Enterprise app deployment doesn't work on iOS 7.1 but I'm getting this error:

"Cannot connect to dl.dropboxusercontent.com"

when trying to install the plist through this link: <a href="itms-services://?action=download-manifest&amp;url=https://dl.dropboxusercontent.com/s/56ny312cwdacho7/xxxxx.plist> Install </a>

Thanks in advance.

like image 325
nano Avatar asked Mar 26 '14 11:03

nano


People also ask

Does IPA work on iOS?

An IPA (iOS App Store package) is an application archive file that contains an iOS app. In simple words, it is a file that can be installed on iOS devices and used as an application.

Why IPA file is not installing on iPhone?

While installing your iOS app with an . ipa file, sometimes the app install may fail due to an error within the app. It could also fail in the following cases: if iOS Entitlements Support is enabled for your app, and your app is not signed using an iOS Distribution Certificate.


1 Answers

NOTE : Shared links don’t render HTML content in a web browser

Refer https://www.dropbox.com/help/desktop-web/force-download

Check question

How to force render a file in a browser


EDIT : Reason is you will need to change link url and reupload it :

  • replace www.dropbox.com with dl.dropboxusercontent.com inall links
  • Reupload by making changes in link which are in html and plist file again.

Thats it. Enjoy


TOTAL SOLUTION

Needed file for distribution using example link are given below :

  • Build your app from xcode using Build and Archive option. Upload your ipa file to Dropbox. And get public link for the ipa.

Note : replace www.dropbox.com with dl.dropboxusercontent.com in the link.

  • Download the manifest.plist - edit the line #14 with the public link of your ipa . Modify other keys as well (bundle-identifier, bundle-version, title) .

  • Upload the modified manifest.plist to Dropbox and get its public link.

  • Download the index.html - edit url param at line #8 with public link of your manifest.plist

Hosting using Github. How that can be achieved is explained in following steps

  1. Create a new project.
  2. Add index.html as we will be hosting a site in Github Pages. Note html file with other name will not be valid as it should always be with index name.
  3. Now go to project settings. Traverse through Github Pages
  4. Under source tab select master-branch and click on save
  5. Traverse back Github Pages you will see site will be published

enter image description here

Now you have Download link like https://paresh-navadiya.github.io/install.html/


Refer How to distribute using DropBox by @ oldman's answer and Distribute your iPhone/iPad adhoc builds Over The Air using DropBox

It working 100% percent.

Have a nice day to all :)

like image 138
Paresh Navadiya Avatar answered Sep 30 '22 16:09

Paresh Navadiya