-
Notifications
You must be signed in to change notification settings - Fork 371
Description
Hi everyone,
I have a situation where I need to add a target to the Podfile generated (An App extension). I was able to modify the Podfile successfully in a post build script but since I can't execute it between the resolver's Podfile generation and pod install I have to manually do "pod install" after each build. I see 2 solutions to this problem that would help me:
1- Grant a way to add arbitrary text to the Podfile as part of the generation (I wasn't able to find any examples of how to do this)
2- Change the values of the execution order so that I can put something in between. The value must be integer and Pod generation is 4 while Pod install is 5. If you would multiply those by say 10 then people could add script executions in the desired order.
Thanks!