How to rebuild development pod changes?

后端 未结 8 612
别那么骄傲
别那么骄傲 2021-01-30 04:09

I have a development pod that I connect to the my app locally using :path => \'~/Projects/Swift/pod\'. When I make changes inside the application code in that d

8条回答
  •  一向
    一向 (楼主)
    2021-01-30 04:25

    While Changing back to the legacy build system works, the build time might increase in some large projects. An alternate solution is to add this run script find "${SRCROOT}/Pods" -type f -name *frameworks.sh -exec bash -c "touch \"{}\"" \; to touch all framework scripts under your project's Build Phases->Embed Pods Framework. This should pickup your new changes until this bug is fixed.

提交回复
热议问题