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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

javascript - Get parameter of GET request -

javascript - Twitter Bootstrap - how to add some more margin between tooltip popup and element -