I have a project where I'm using Cocoapods. As part of the cocoa pods setup the Xcode "Build Phase" gets two Cocoapods scripts:
[CP] Embed Pods Frameworks[CP] Copy Pods Resources
In the same project I use a script that is required to run after [CP] Embed Pods Frameworks. I can setup it up manually and it works having
[CP] Embed Pods FrameworksMy Script[CP] Copy Pods Resources
Problem is that after running pod deintegrate to reinstall the pods the order of script is reset to:
My Script[CP] Embed Pods Frameworks[CP] Copy Pods Resources
As the team work on this project is big. It can happen that the script order is reset by mistake causing the CI to break.
Is there a way in the Podfile to control the order of the scripts?