When I try to build my project, I get a compile time error saying that a \"Module map file\" for my pod cannot be found and that I am missing a \"SwiftShimes\" module.
I fixed this problem myself. I can tell you what I did. Not sure which steps did it exactly, but below are all steps:
pod cache clean --all
pod init
. A new "Podfile"-file is added to the dirpod install
In my case, I think the row use_frameworks!
in the "Podfile" did the trick.
Hope this help you guys out!