Side loading iPhone apps to device without certificate

社会主义新天地 提交于 2019-12-03 16:24:23

No. If you're working under the iOS Developer Program the only real way to distribute your app is via the app store. Other than that, you're stuck with ad hoc distribution and the time limit that comes with that. However, if you qualify for the iOS Enterprise Program (i.e. you're a business), you can sign up for that program and then distribute your apps in-house without going through the app store.

After spending much time on internet for this question I present the following.

Summary

  • iOs doesn't allow sideloading of unsigned apps. The only way to currently do that is jailbreak.

  • But there is a work around.. You could beat that using
    MacBuildServer

  • The signing process MacBuildServer uses to cleverly skirt this
    limitation is to have you use your own certificate, or to simply use their certificate from the iOS developer enterprise program to sign
    the compiled app (again, for testing purposes).

  • The iOS Developer Enterprise Program was designed to allow companies to develop in-house apps for use within their organization, without
    publishing them on the App Store.

  • An example of a business that would be part of this program would be an event coordinating business that uses these in-house iOS apps to
    check people in and perform other tasks.

  • MacBuildServer's demo gives you a three-click process to build any open-source iOS app you can find on GitHub, and sign it with an
    enterprise certificate that allows jailbreak-free sideloading
    for your own testing purposes.

Disclaimer

The ideas that are presented here are not my own i found this on internet.visit the reference for more details.

Reference

Without jailbreaking, your options are: app store, ad hoc (with time limit), and join the Enterprise program

There is one other option. It's possible to create web-app and then add it as a bookmark.

But the obvious downsides are:

  1. It's html. Even with html5 you're not going to get access to the camera etc... 2: It's open to the public (Although it's easy block access with standard security).

However question was asked long ago, but I think now it is possible with XCode 7.

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