Reputation: 656
After pod update i am seeing the following error
library not found for -lGSDK_Overload
while trying to build the project. I have been using the Google Analytics in my project. Is this related to Google Analytics ? See the header search path in my project
I have seen the similar questions in SO. But here i have no idea what is GSDK and where the actual issue lies.
Pod update details
Any help will be appreciated
Upvotes: 5
Views: 2056
Reputation: 691
Check for the following solutions
Have u launched your project through [project_name].xcworkspace
Check for libGSDK_Overload_external.a
library file at following path file-path/[project_name]/Pods/GoogleSymbolUtilities/Libraries/
in your root folder of the project and add this file to projects target.
Rebuild your project.
Upvotes: 9
Reputation: 605
I had a similiar issue:
library not found for -lPods
I fixed it by Rohit Agre's answer option 3
pod deintegrate
rm -r [project_name].xcworkspace
pod install
Upvotes: 0
Reputation: 198
After a few hours of trying the answer provided by @vje1998 and couple of other stuff like deleting derived data, removing cocoapods all together. I finally fixed it. I hope this helps anybody that might have the same issue.
Under Build Settings>Linking>Other Linker Flags
. I deleted the row with -lGSDK_Overload. It solved the problem google analytics still works and there are no linker errors. After running pod install
Other Linker Flags stays the same so I'm assuming that it wasn't needed to begin with.
Upvotes: 5