We recently upgrade Xcode to version 13. Version 13.3.1
When we build the project we get the error below -
failed to emit precompiled header '/Users/XYZ/Library/Developer/Xcode/DerivedData/Projectname-enjky/Build/Intermediates.noindex/PrecompiledHeaders/ProejctnameTests-Bridging-Header-swift_32WPX9UNF3APQ-clang_3TAMX14OS8HQU.pch' for bridging header '/Users/XYZ/Documents/ProjectnameTests-Bridging-Header.h'
/Users/XYZ/Documents/ProjectnameTests-Bridging-Header.h:5:9: note: in file included from /Users/XYZ/Documents/ProjectnameTests-Bridging-Header.h:5:
#import "GTLRCloudendpoint.h
Our coding language is SWIFT. There is an Ojective-C module that is being imported. We have looked at all the suggestions here.
- ensured that the deployment target is 11
- $(inherited) non-recursive to Search Path -> Header Search Paths
- ${PODS_ROOT} recursive to Search Path -> User Header Search Paths
But still get this error. Please help.