0

I want to download ipa file from server and install programmatically. I want to do same kind of thing in android as well and i have found a way.

Android: http://bpsinghrajput.blogspot.in/2012/07/how-to-download-and-install-apk-from.html

IOS: ?

Could you please help me.

Regards,

Sneh

Sneh
  • 11
  • 2

2 Answers2

0

You can't install IPA's programatically from within iOS (on a non-jailbroken device).

Some other options are:

Community
  • 1
  • 1
  • http://stackoverflow.com/questions/34502651/install-a-programmatically-downloaded-ipa-on-an-ios-device – Sneh Jun 16 '16 at 07:29
0

You can use ideviceinstaller for that. This github gist has a few examples

https://gist.github.com/githubutilities/91ba27c2f5a135dce1a2#file-ios-hacks-md

# list installed app on the connected device
# it also lists the identifier of the installed packages
ideviceinstaller -l

# install ipa
ideviceinstaller -i <your-package.ipa>

# uninstall app
ideviceinstaller -U <your-app-id>
jmp
  • 2,175
  • 2
  • 17
  • 16