objective c - Problems with CocoaPods GoogleCloudMessaging (Xcode 7.2) -
i added googlecloudmessaging cocoapods project. file "pods" contains following code:
source 'https://github.com/cocoapods/specs.git' platform :ios, '8.1' dependency 'libpusher', '1.1' pod 'google/cloudmessaging'
after install had problems library -lpods, problem solved removing content of build settings -> linkers -> other linkers flags.
as result got next error:
ld: library not found -lcocoaasyncsocket clang: error: linker command failed exit code 1 (use -v see invocation)
i have solved problem: necessary use
$ pod update
from terminal
Comments
Post a Comment