0

In in my html-file I want to create a link for IOS-Users to download the IPA-File (app) I created. But when I upload it normally it's not downloadable.

Could anyone be kind and help me please?

Or does anyone know where I could upload a 103 MB big IPA-File for others to download it? (For free? If not for free its also okay)

Makusium
  • 201
  • 1
  • 2
  • 15

2 Answers2

1

You can't do that . you need to add the udid iphone in the certificat when you build IPA and use some programme like (anytrans) to transfer the IPA to iphone .

and make sure you are export the IPA for Testing instead Appstore with (ad-hoc)

Younes Zaidi
  • 1,180
  • 1
  • 8
  • 25
  • Thanks very much for the info! It helps a lot :) – Makusium Jul 11 '18 at 09:26
  • i used Unity and xCode to produce the IPA file – Makusium Jul 11 '18 at 09:27
  • if you want to installe the app in your iphone without sending into app store you need to add the udid Iphone in your project before export the ipa in xcode for working in your iphone , or you can send your app in App store and when approved you can download the app from any mobile – Younes Zaidi Jul 11 '18 at 09:30
  • I uploaded it to the Appstore already but I can't use Https in my App. which I need because of that I'm trying to upload it to a server where I can download from with https. Apple says you have to make a documentary for it and have zertificates but I can't get them. – Makusium Jul 11 '18 at 09:59
0

To download and install an iPA-File, you must use a secure protocol such as https ! You can also use .plist to install the IPA file !

To install an IPA file, we need to use the following procedure on the HTML page :

<a href="itms-services://?action=download-manifest&url=https://example.plist">DOWNLOAD AND INSTALL IPA FILE !</a>

You can use www.dropbox.com to upload ipa files : This Site

Use this method to convert indirect links to direct links from dropbox.com

Note : Unfortunately, the App Store does not allow installing unknown apps !

Good luck.

Siros Baghban
  • 406
  • 4
  • 7
  • Thank you. I wanted actually to upload it to the Appstore but we use in our Game Https and apple dosen't allow Https until you give a reason for it.... Also you need a extra document for explaination to use Https :/ – Makusium Jul 11 '18 at 09:50
  • Cant we just go to setting->general->device management->click app -> trust app to allow using third party app ?? – Pratik Khadka Sep 11 '18 at 05:15
  • @PratikKhadka please. It's apple. – Makusium Mar 19 '19 at 07:53