10

I created a Command Line Tool project in Xcode 8.2.1, then I ran pod init and added RealmSwift to it. After pod install, I opened the .xcworkspace file.

The project compiles fine, but at runtime I get the following error:

dyld: Library not loaded: @rpath/Realm.framework/Versions/A/Realm
Referenced from: /Users/myuser/Library/Developer/Xcode/DerivedData/myproject-eqotetgxsfjvxjfevywenvddnfdm/Build/Products/Debug/myproject
Reason: image not found
Program ended with exit code: 9

How can I use cocoapods here?

swalkner
  • 16,679
  • 31
  • 123
  • 210

3 Answers3

5

https://github.com/CocoaPods/CocoaPods/issues/3707

In other words cocoa pods don't work with "Command Line Tool" projects.

Gargo
  • 1,135
  • 1
  • 10
  • 21
2

in podfile, comment the use_frameworks! line

credit here.

Ole Pannier
  • 3,208
  • 9
  • 22
  • 33
0

Please make sure your project setting under Link Binary with Libraries as 'Optional' not as 'Required' for Pod_PROJECT-NAME.framework

enter image description here

BaSha
  • 2,356
  • 3
  • 21
  • 38