I am trying to install ParseUI, Facebook SDK by cocoapods. Here is my pod file:
platform :ios, '8.0'
pod 'ParseUI', '~> 1.1.3'
pod 'Parse', '~> 1.7.2'
pod 'Facebook-iOS-SDK', '~> 4.1.0'
pod 'ParseFacebookUtilsV4', '~>1.7.2'
pod 'AFNetworking', '~> 2.5.3'
After pod install, I got a warning
"Facebook-iOS-SDK has been deprecated in favor of FBSDKCoreKit".
Does this mean I should uninstall "Facebook-iOS-SDK" by removing the line
pod 'Facebook-iOS-SDK', '~> 4.1.0'
and pod install again?
Does ParseUI work with pod 'Facebook-iOS-SDK', '~> 4.1.0'?