Hi guys, I am building an app. I ran into an error and I am not quite sure exactly what it means.
/Users/prathamhebbar/Desktop/Custom Apps/Palendar/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h: No such file or directory
seems you are not familiar with a project with cocoapods yet, i suggest checking out this article to be familiar with it CocoaPods Tutorial using Swift and Xcode
I think the reason everything went downhill is that I had installed the firebase analytics pod but upon creating my firebase project, I had not enabled analytics. So I removed that firebase analytics pod from my Xcode project.
Upon further investigation, I am running into this error.
/Users/prathamhebbar/Desktop/Custom Apps/Palendars/Palendars.xcodeproj The linked framework ‘Pods_Palendars.framework’ is missing one or more architectures required by this target: x86_64.
Seems like you have the right pods. You will get some errors when you build the project because Google have been lazy and not updated the pod definitions in line with the requirements by Apple for the minimum deployment target. As long as you update the settings that Xcode advises you to do then you should be OK.
Also make sure that after you install the pods that you open the project via your ProjectName.xcworkspace file rather than via ProjectName.xcodeproj
Thank you so much for getting back to me! I have been opening the .xcworkspace file. However, when I open the .xcworkspace file I still get that error namely this one:
/Users/prathamhebbar/Desktop/Custom Apps/Palendars/Palendars.xcodeproj The linked framework ‘Pods_Palendars.framework’ is missing one or more architectures required by this target: x86_64.
Also, can you please specify the settings that Xcode wants me to update?
Since you have a Mac with an M1 processor, before you installed pods for any project, the question is:
When you originally installed cocoapods on your M1 Mac did you have any errors in the installation process and have you resolved all the errors so that cocoapods was installed successfully?
When I originally installed cocoa pods on my M1 Mac, I don’t think I had any errors in the installation process. I think I have resolved all the errors for now.
Thank you so much for getting back to me! I appreciate your time very much!