Can I use XMPPFramework without all the XEP extension?

I recently tried to archive my project. 2 hours passed, and the archiving process was still in the Running 2 of 2 custom shell scripts phase.

enter image description here

Apparently, after viewing Report Navigator, the main reason for this is that I use the XMPPFramework Pod, and the archiving process takes too much time when running Copy Pods Resources a custom shell script for one of the XMPPFramework Extensions XEP (one that I don’t even use ) enter image description here

Then I think that I can get rid of this problem, disable some XMPPFramework extensions that I do not use.

So with me, using CocoaPods to install XMPPFramework in my project, can I remove XMPPFramework XEP that I will not use? I use only 3 XEP, but not all of them.

0
source share
1 answer

Unfortunately, you cannot just install the XEP that you want to use when using the module.

You still have 2 options:

You can install the framework manually: Current manual installation instructions for XMPPFramework?

Or you can edit XMPPFramework.h to use only the necessary XEP, but I do not recommend this one.

+1
source

Source: https://habr.com/ru/post/1489492/


All Articles