IOS error: library not found for -lGSDK_Overload

After updating pod, I see the following error

library not found for -lGSDK_Overload

when trying to create a project. I use Google Analytics in my project. Is this related to Google Analytics? See header search path in my project

enter image description here

I saw similar questions in SO. But here I have no idea what GSDK is and where the real problem is.

Update Details for Update

enter image description here

Any help would be appreciated

+5
source share
3 answers

Check out the following solutions

  • You have your project running through [project_name].xcworkspace

  • Check the library file libGSDK_Overload_external.a at the following path file-path/[project_name]/Pods/GoogleSymbolUtilities/Libraries/ in the project root folder and add this file to the target. Rebuild your project.

enter image description here

  1. If the problem is still complete, delete the pod file and reinstall it.
+8
source

After several hours of trying the answer provided by @ vje1998, and several other things, such as deleting the received data, deleting the cocadas together. I finally fixed it. Hope this helps anyone who might have the same problem.

Under Build Settings>Linking>Other Linker Flags . I deleted the line with -lGSDK_Overload. He solved the problem that Google Analytics is still working and there are no linker errors. After starting pod install Other linker flags remain the same, so I guess you don't need to start from it.

+5
source

I had a familiar problem:
library not found for -lPods

I fixed it Reply Rogita Agr

pod deintegrate
rm -r [project_name].xcworkspace
pod install

0
source

Source: https://habr.com/ru/post/1247202/


All Articles