xcode 和 ad-hoc-distribution:我可以带 xcode 自动制作 .ipa 吗?
我可以做吗,当在adhoc-profile中编译时,我为xcode制作,将其打包成向itunes或ipa抱怨的zip,给它一个自动名称(可选...appname_date_time.zip)并将其复制到网络-小路 ?
那么,我真正的问题是什么:我想我明白,在过去的构建阶段我可以运行 shell 脚本。但我现在还没有做过很多 shell 脚本编写。我可以用 shell 在 osx 上进行压缩吗?对于这种情况,可以用简单的方式吗?
我可以让“没有连接配置的 iPhone”消息消失吗?
为什么 ? 我希望一些公司内部人员可以加载我的软件,而不会在每个新版本上发送垃圾邮件。
can i make, that when compiling in the adhoc-profile, i made for xcode, pack it into a zip complaining to itunes or an ipa, give it an automatic name (optional ... appname_date_time.zip) and copy it to a network-path ?
so, what is really my problem: i think i understood, that in a past-build-phase i can run a shell-script. but i haven´t done many shell-scripting now. can i zip on osx with the shell and for this case in a simple way ?
and can i let the message "no provisioned iphone connected" be gone ?
why ?
i want, that some company-internal people can load my software without email-spamming on each new release.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好的,构建和归档至少会自动构建 .ipa。剩下的可能只是第二次点击和一个脚本。所以如果没有人有更优雅的解决方案,这就足够了
ok, build and archive builds at least the .ipa automatically. the rest might be just a second click and a script. so if no one has a more elegant solution, this is enough
查看 BetaBuilder gem - https://github.com/lukeredpath/betabuilder。它对我来说大约 90% 有效 - 我必须稍微重新调整它的内部路线才能使其工作,但我的 fork (https://github.com/dts/betabuilder) 对我有用。希望您能为您拼凑出一个解决方案(这对我来说是值得的!)
Check out the BetaBuilder gem - https://github.com/lukeredpath/betabuilder. It worked about 90% of the way for me - I had to re-route its guts a bit to make it work, but my fork (https://github.com/dts/betabuilder) works for me. Hopefully, you can cobble together a solution for you (it was worth the effort for me!)
您可以自动执行此操作,但需要在代码签名之后进行,这位于您可以添加到 Xcode 的最后一个构建阶段之后。因此,解决方案是创建一个新的聚合目标并在其中定义 shell 脚本。
以下是整个过程的示例,包括有关如何设置的自述文件: https://github.com/TheRealKerni/HockeyKit/tree/develop/client/iOS/Beta%20Automatization
You can automate this, but need to get after the code signing, which is behind the last build phase you can add to Xcode. So the solution is creating a new aggregate target and define the shell script in there.
Here is an example of the whole process including a readme file on how to set it up: https://github.com/TheRealKerni/HockeyKit/tree/develop/client/iOS/Beta%20Automatisation