How to Install .ipa file to iPhone from Web Link?

∥☆過路亽.° 提交于 2021-02-08 09:22:09

问题


I have created one enterPrise App. And I followed the steps form the below link.

I also gave correct paths for Manifest file also.

After exporting App to the Server, If I use that link to install that .ipa file to my iPhone,

It's showing like the Below image.

How to install that .ipa file to iPhone without using third party tools or itunes connect?

Image showing like this while click on .ipa file link


回答1:


You just need to enable the over the air installation while creating ipa file.

Check attached screen shots, it will help you more.

You can provide your ipa, small icon and big icon url in second steps.

Once you are done with this steps, you will get manifest.plist and YOUR_NAME.ipa.

Now you are ready to upload application. You can put both file on url which you enter in second steps. Then create one html file and write below code on button click:

<a href="itms-services://?action=download-manifest&url=YOUR_MANIFEST_PATH/manifest.plist">Tap Here to Install<br />APPNAME<br />INSTALLED</a>

Open html url in your device and installed application.

Best way to upload ipa and manifest is DROPBOX. You can upload both on dropbox Public folder and then you can get link and use it. Cheers...




回答2:


First of all, you should have the enterprise dev account. And when you archive, export enterprise ipa. The following steps are how I deploy my enterprise ipa package. There are some files you should provide, and all put on the server which is support https. 1. appIcon size of 512x512 2. appIcon size of 57x57 3. ipa package 4. a manifest.plist. In the plist file you should set the software-package to where the ipa address in the server, display-image(icon 57x57) and full-size-image(icon 512x512).

When all the files have done, you can download the ipa in the safari use the URL: itms-services://?action=download-manifest&url=https://yourserveraddress/manifest.plist



来源:https://stackoverflow.com/questions/44302566/how-to-install-ipa-file-to-iphone-from-web-link

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!