0

I need to install my own app on other iPhones but without jailbreak and without the App Store!

Something like: ~~> tui.tongbu.com

It installs without App Store and jailbreak

Another example ~~> sibche.ir ;)

I mean how they crack their apps so that it will install on non-jailbroken iPhones.

tshepang
  • 12,111
  • 21
  • 91
  • 136
Amir Hossein
  • 75
  • 1
  • 1
  • 6
  • This question has been asked before: http://stackoverflow.com/questions/11741111/install-ios-app-directly-from-website-no-password-no-itunes-no-udid – Simon East Jul 28 '15 at 13:24

3 Answers3

3

It's called wireless distribution of iOS apps. You will need to create enterprise manifest file, which is plist containing HTTP link to your ipa file.

You will need to host it somewhere and you will need to open this link in Safari or pass it to the device through MDM (Mobile Device Management), if this device is enrolled in MDM.

Take a look at this link

It explains how to do enterprise manifest and distribute apps over the air.

Matthias
  • 3,582
  • 2
  • 30
  • 41
Victor Ronin
  • 22,758
  • 18
  • 92
  • 184
2

You could use this tool

It lets you turn your app (in the form of a github repo) into an app that you can install straight from Safari.

A good example of this is GBA4IOS

Quill
  • 2,729
  • 1
  • 33
  • 44
-1

If you add the other iPhones' UDIDs to your developer portal and create an Ad Hoc Provisioning Profile containing them, you can distribute Ad Hoc builds to these iPhones.

You can distribute over the air (aka downloading an IPA from a webpage) using exactly the same mechanism mentioned by Victor.

I've written a script that takes a .ipa file, creates the various html & "manifest" file and uploads it to your web host (web host not included).

Community
  • 1
  • 1
Rhythmic Fistman
  • 34,352
  • 5
  • 87
  • 159