我可以在没有XEP扩展的情况下播放XMPPFramework吗?

时间:2016-03-31 07:19:52

标签: ios xcode xmpp cocoapods xmppframework

我最近一直在努力归档我的项目。 2小时后,归档过程仍处于 var str = "get-form"; str = str.split("-"); var str2= str[1].slice(0,1).toUpperCase() + str[1].slice(1); var newStr = str[0]+str2; alert(newStr); 阶段。

enter image description here

显然,在查看报表导航器之后,其根本原因是因为我使用的是 XMPPFramework Pod,并且归档过程在运行时耗时太长复制Pods资源自定义shell脚本,用于 XMPPFramework Extensions XEP 之一(我甚至不使用它)。 enter image description here

然后,我想我可以通过禁用一些我不会使用的XMPPFramework扩展来解决这个问题。

因此,在我使用CocoaPods将XMPPFramework安装到我的项目中时,我可以删除我不会使用的XMPPFramework XEP吗?我只使用3个XEP,而不是全部。

1 个答案:

答案 0 :(得分:1)

很遗憾,您无法在使用pod时安装所需的XEP。

您仍有2个选项:

您可以手动安装框架: Up to date instructions on how to install XMPPFramework manually?

或者您可以编辑XMPPFramework.h以仅使用您想要的XEP,但我不推荐这个。