I am trying to use Firestore in my iOS Widget. When I run pod update and then clean, build, I get the following:
error: unable to read module map contents from 'Target Support Files/GoogleUtilities/GoogleUtilities.modulemap': Error Domain=NSCocoaErrorDomain Code=260 "The file “GoogleUtilities.modulemap” couldn’t be opened because there is no such file." UserInfo={NSFilePath=/Users/James/Documents/Development/INDX420/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap, NSUnderlyingError=0x7fb732c13f30 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}
warning: no umbrella header found for target 'GoogleUtilities', module map will not be generated
Thoughts?
EDIT: I got through that after first dealing with a Facebook API issue. Anyway now it compiles my main target but dies instantly with this error
dyld: Symbol not found: _OBJC_CLASS_$_GULAppDelegateSwizzler
Referenced from: /Users/James/Library/Developer/CoreSimulator/Devices/E3EF00D4-577A-43CF-85DC-95209216A72D/data/Containers/Bundle/Application/BC790D62-8CC5-4CF5-9330-4BF6E264BBBB/INDX01.app/INDX01 Expected in: /Users/James/Library/Developer/CoreSimulator/Devices/E3EF00D4-577A-43CF-85DC-95209216A72D/data/Containers/Bundle/Application/BC790D62-8CC5-4CF5-9330-4BF6E264BBBB/INDX01.app/Frameworks/GoogleUtilities.framework/GoogleUtilities in /Users/James/Library/Developer/CoreSimulator/Devices/E3EF00D4-577A-43CF-85DC-95209216A72D/data/Containers/Bundle/Application/BC790D62-8CC5-4CF5-9330-4BF6E264BBBB/INDX01.app/INDX01
Now this is in the main target which works if I take out the firestore pod from the widget target. I have done countless remove all pods, install, update, delete, clean build a dozen times on this issue