xcode 如何将xcode项目发送给客户端进行测试

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/5374057/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-14 20:35:31  来源:igfitidea点击:

how to send xcode project to client for testing

iphonexcodeios

提问by Anks

I'm pretty new here so don't have much idea about it. So sorry for my very simple questions.

我是新来的,所以不太了解。很抱歉我的问题很简单。

I have created simple application in xcode. I want to send that application to client so that he can test it on his device.

我在 xcode 中创建了简单的应用程序。我想将该应用程序发送给客户端,以便他可以在他的设备上进行测试。

Can anyone please help me out with this?

任何人都可以帮我解决这个问题吗?

Thank you, Ankita

谢谢你,安基塔

回答by Swapnil

You can make .ipa file and send it to for testing....You will require developer license.

您可以制作 .ipa 文件并将其发送给测试....您将需要开发人员许可证。

http://labs.makingwaves.com/2010/09/03/distribute-ad-hoc-iphone-apps-as-ipa-files/

http://labs.makingwaves.com/2010/09/03/distribute-ad-hoc-iphone-apps-as-ipa-files/

回答by Jason

TestFlightis a service which makes managing ad-hoc deployment and testing much easier than doing it manually.

TestFlight是一项服务,它使管理临时部署和测试比手动执行要容易得多。

回答by Parth Bhatt

You can create an AdHoc version of your app.

您可以创建应用程序的 AdHoc 版本。

You just need to code sign with your distribution profile.

您只需要使用您的分发配置文件进行代码签名。

Also you need to add a entitlements.plist which contains item called "get-task-allow" with type as Boolean and value as NO.

您还需要添加一个 entitlements.plist,其中包含名为“get-task-allow”的项目,类型为布尔值,值为 NO。

Now you simply need to add this Entitlements.plist to your code signing entitlements and then you need to just "Clean" and "Build and Archive".

现在您只需将此 Entitlements.plist 添加到您的代码签名权利中,然后您只需要“清理”和“构建和存档”。

The archive would be formed in Oragnizer. Then you need to share it as save it to disk as <appname>.<versionnumber>.ipa

档案将在 Oragnizer 中形成。然后你需要分享它作为将它保存到磁盘<appname>.<versionnumber>.ipa

Now this .ipa file along with your .mobileprovsion file is to be sent to your client.

现在这个 .ipa 文件和您的 .mobileprovsion 文件将被发送到您的客户端。

NOTE:

笔记:

You need to add the client's Device ID to your distribution profile. Only then the Client's device would be allowed to install this app on it and test it.

您需要将客户端的设备 ID 添加到您的分发配置文件中。只有这样,客户端的设备才会被允许在其上安装此应用程序并对其进行测试。

Hope this helps you.

希望这对你有帮助。

If you have any doubts on this then you may just leave a comment here. :-)

如果您对此有任何疑问,那么您可以在这里发表评论。:-)