Alexey Oderey
Alexey Oderey

Reputation: 43

Parse + CocoaPods + xcode7: framework not found Bolts

I added in podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
pod 'Parse'
pod 'ParseUI'
pod 'ParseCrashReporting'
pod 'GoogleMaps'

add FRAMEWORK_SEARCH_PATHS and OTHER_LDFLAGS - $(inherit)

all frameworks integrated enter image description here

and compiling project but an error:

ld: framework not found Bolts

clang: error: linker command failed with exit code 1 (use -v to see invocation)

enter image description here

Upvotes: 1

Views: 267

Answers (1)

Saheb Singh
Saheb Singh

Reputation: 557

Try this, Go to Framework Search Paths and check the order. It should be- 1)Bolts 2)FB 3)Parse.

Upvotes: 0

Related Questions