在没有证书的情况下将 iPhone 应用程序侧面加载到设备
有没有什么方法可以通过iPhone浏览器或其他东西将应用程序推送到iPhone,您可以在其中捆绑ipa并将其复制到解锁的设备(甚至未解锁的设备)上?
如何将应用程序推送到我的设备而不将其放在 cydia 存储库上?是否有有关 cydia 如何执行此操作的说明,或者这超出了我的理解范围(考虑到我不知道 iphone 的复杂性)。
这是我开发的定制应用程序,我只需要一种将其推送到设备的方法,而无需担心审批流程,并且我希望在 3 个月的配置文件期限后将其保留在设备上。
Is there any way to push apps to an iphone through an iPhone explorer or something else, where you can bundle up the ipa and copy it onto an unlocked device (or non unlocked even)?
How can I push an app to my device without putting it on a cydia repo? Are there instructions on how cydia does this, or would this be out of my depth (considering I dont know the intricacies of the iphone).
This is a customized app I have developed, I just need a way to push it to the device without worrying about the approval process, and I want to keep it on the device past the 3 month provisioning profile period.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在花了很多时间在互联网上回答这个问题之后,我提出以下内容。
摘要
iOs 不允许侧载未签名的应用程序。唯一的方法是
目前这样做是越狱。
但是有一个解决方法..你可以使用
来解决这个问题
MacBuildServer
签名过程MacBuildServer用来巧妙地解决这个问题
限制是让您使用自己的证书,或者简单地使用
他们的证书由 iOS 开发者企业计划签署
已编译的应用程序(同样,用于测试目的)。
iOS 开发者企业计划旨在让公司
开发内部应用程序以供其组织内部使用,而无需
将它们发布到 App Store 上。
参与该计划的企业示例是
一家活动协调企业,使用这些内部 iOS 应用程序来
检查人员并执行其他任务。
MacBuildServer 的演示为您提供了一个三键点击流程来构建您可以在 GitHub 上找到的任何开源 iOS 应用程序,并使用
允许免越狱侧面加载
的企业证书
用于您自己的测试目的。
免责声明
这里提出的想法不是我自己的,我是在互联网上找到的。请访问参考资料以获取更多详细信息。
参考
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
不可以。如果您正在参与 iOS 开发者计划,这是分发应用程序的唯一真正方式是通过应用程序商店。除此之外,您还受制于临时分发和随之而来的时间限制。但是,如果您有资格参加 iOS 企业计划(即您是一家企业) ,您可以注册该计划,然后在内部分发您的应用程序,而无需通过应用程序商店。
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.
还有另一种选择。可以创建网络应用程序,然后将其添加为书签。
但明显的缺点是:
2:它向公众开放(尽管它很容易通过标准安全性阻止访问)。
There is one other option. It's possible to create web-app and then add it as a bookmark.
But the obvious downsides are:
2: It's open to the public (Although it's easy block access with standard security).
然而问题很久以前就被问到了,但我认为现在 XCode 7 是可能的。
However question was asked long ago, but I think now it is possible with XCode 7.