Reputation: 257
I'm trying to use Google Analytics library with my xcode project. Everything was working for a few months but then I moved the files on my computer to different locations and now I'm getting this error. I tried fixing the Library Search Paths but I had no success.
Upvotes: 7
Views: 1960
Reputation: 1
If you are using pods, check if the value of Library Search Path equals to "Multiple values"
if so, remove "Any Architecture | Any SDK" from both "Debug and Release" by clicking on the minus button beside it.
Upvotes: -1
Reputation: 1060
If you are using Pods to include the GoogleAnalytics iOS SDK into your project, it's worth noting that since the 3.0 release your 'other link flags' needs to include -lGoogleAnalyticsServices not the old -lGoogleAnalytics
Upvotes: 2