caveat: new to cocoapods... I have a swift xcode project and I'm trying to use the XCGLogger pod, but after adding it to the podfile, (with use_frameworks! ), pod install -- everything looks good:
but when I put the import XCGLogger in my appdelegate, the compiler tells me No such module: XCGLogger.
import UIKit
import Crashlytics
import XCGLogger
What could I have done wrong (this time:) ?
thanks!
According to: https://github.com/DaveWoodCom/XCGLogger
How to Use
Add the XCGLogger project as a subproject to your project, and add either the iOS or OS X library as a dependancy of your target(s). Under the General tab of your target, add the XCGLogger.framework to the Embedded Binaries.
Then, in each source file:
You don't need cocoapods for this. Download the .zip from the link above. Unzip and use the .xcodeproj located in the Library directory for step 1...
Add the XCGLogger project as a subproject:
Add the iOS library as a dependency of your target:
Under the General tab, add the XCGLogger.framework to the Embedded Binaries:
Then...
And that's it.