Alerts for the GoogleMaps Framework in test case

After upgrading to Xcode 7.1 and fixing some problems with my cocapodes (I had containers for both the main and the test purpose), now I have the following warnings.

ld: warning: directory not found for option '-F / Users / john / development / OurLatitude / OurLatitude / pods / GoogleMaps / Wireframes "

ld: warning: automatic link enabled '/Users/john/development/OurLatitude/OurLatitude/Pods/GoogleMaps/Frameworks/GoogleMaps.framework/GoogleMaps', frames in / Users / john / development / OurLatitude / OurLatitude / Pods / GoogleMaps / Frameworks /GoogleMaps.framework/GoogleMaps is not dylib

I originally did only Auto-Linking

but some managed to get a warning directory not found

In my test target search path, I have the following:

 "$(PODS_ROOT)/GoogleMaps/Frameworks" $(inherited) $(PROJECT_DIR)/Pods/GoogleMaps/Frameworks" 

enter image description here

If I delete this entry, I get the following error:

ld: framework not found by GoogleMaps for i386 architecture

At some point, I think it was complaining about armv7, I forgot that I changed what affected it.

Including the path in my test target search path is just a warning, and everything, including the test, seems to work, but I would like to get rid of the warning if possible.

Any ideas?

I tried what was suggested in this answer , but it only worsened the situation.

+5
source share

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


All Articles