简体   繁体   English

如何将Xcode项目发送到客户端进行测试

[英]how to send xcode project to client for testing

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. 我已经在xcode中创建了简单的应用程序。 I want to send that application to client so that he can test it on his device. 我想将该应用程序发送给客户端,以便他可以在其设备上对其进行测试。

Can anyone please help me out with this? 谁能帮我这个忙吗?

Thank you, Ankita 谢谢安基塔

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/

TestFlight是一项服务,与手动进行相比,它使管理临时部署和测试变得更加容易。

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. 存档将在Oragnizer中形成。 Then you need to share it as save it to disk as <appname>.<versionnumber>.ipa 然后,您需要将其共享为<appname>.<versionnumber>.ipa保存到磁盘<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. 您需要将客户端的设备ID添加到您的分发配置文件中。 Only then the Client's device would be allowed to install this app on it and test it. 只有这样,客户端的设备才可以在其上安装此应用并对其进行测试。

Hope this helps you. 希望这对您有帮助。

If you have any doubts on this then you may just leave a comment here. 如果对此有任何疑问,可以在这里发表评论。 :-) :-)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM