QuickBlox / q-municate-ios

Q-municate iOS repository
http://q-municate.com
MIT License
163 stars 86 forks source link

error when pod install: target has transitive dependencies that include static binaries #204

Closed Anilkr91 closed 7 years ago

Anilkr91 commented 7 years ago

The 'Pods-HeartKeeper' target has transitive dependencies that include static binaries: (/Users/anilkumar/Desktop/ProntoITLabs/Developer/heart-keeper-ios/Pods/QuickBlox/Quickblox.framework)

ghost commented 7 years ago

@Anilkr91 , Hello. Could you please show your podfile?

Anilkr91 commented 7 years ago

platform :ios, '9.0' use_frameworks!

def common_pods

end

target 'HeartKeeper' do common_pods pod 'Restofire-Gloss' pod 'FBSDKLoginKit' pod 'FBSDKCoreKit' pod 'Google/SignIn' pod 'IQKeyboardManagerSwift', '4.0.5' pod 'Whisper' pod 'SwiftyUserDefaults' pod 'Kingfisher' pod 'ENSwiftSideMenu' pod 'JVFloatLabeledTextField' pod 'MZFormSheetPresentationController' pod 'QuickBlox', '2.7.2' pod 'Quickblox-WebRTC' pod 'QMChatViewController' pod 'SDWebImage' pod 'SwiftDate' pod 'Charts' pod 'Cosmos', '~> 1.2.0' pod 'KMPlaceholderTextView', '~> 1.2.2' pod 'JLToast', '~> 1.4' pod 'LNNotificationsUI', :git => 'https://github.com/nikolay-kapustin/LNNotificationsUI.git' pod 'Fabric' pod 'Crashlytics' pod 'MBProgressHUD' pod 'TSMessages' pod 'PayPal-iOS-SDK' end

target 'HeartKeeperTests' do common_pods end

ghost commented 7 years ago

@Anilkr91 If you want to add QuickBlox via CocoaPods you should change pod 'QuickBlox', '2.7.2' with pod 'QuickBlox', '2.7.5'. QuickBlox is released as a dynamic framework since version 2.7.5.

Or you can add QuickBlox 2.7.2 manually.

Anilkr91 commented 7 years ago

Issue is resolved by including the 'QuickBlox', '2.7.5' version . Thanks