Finally found a solution to this problem! For my part, I had this problem with my express modules. My subfile looked like this:
def import_gtm send :pod, 'GoogleTagManager', '~> 5.0.8' end target 'MyFramework' do
Despite the fact that my tests performed correctly, I had a lot of logs, like the OP. After reading this Github issue, I changed my subfile to the following:
def import_gtm send :pod, 'GoogleTagManager', '~> 5.0.8' end target 'MyFramework' do
I finally got rid of all these warnings! Try to clear before rebuilding (cmd + alt + shift + K) or delete the contents of the DerivedData folder:
rm -rf ~/Library/Developer/Xcode/DerivedData/*
Hope this helps!
source share