Last active
December 24, 2015 18:19
-
-
Save kaylarose/6842099 to your computer and use it in GitHub Desktop.
Cocoapods Cheatsheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cocoapods Notes | |
## For XCode 5 Dev Preview on Mavericks | |
If your dynamic frameworks in the Pods project are getting linked to OSX Frameworks instead of iOS, you can try reverting to an earlier version of Cocoapods (0.24.0) | |
- This is more of an XCode UI bug, than a real build problem, but at this point in time there is no work around in Cocoapods. Original Source: https://github.com/CocoaPods/CocoaPods/issues/1420#issuecomment-25561488 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Don't clean out the temporary Pods/ project built from the spec | |
# Helpful for checking Spec references, frameworks, and bundles, | |
# and Compile-Time logs | |
# open /tmp/CocoaPods/Lint/Pods/Pods.xcodeproj for instpection | |
pod spec lint MobileDeposit.podspec --verbose --no-clean | |
# Generate the Pods project in your working Dir, but DON'T | |
# integrate the Pods project into your Working Directory Project | |
# Helpful for checking Spec references, frameworks, and bundles, etc. | |
pod install --no-integrate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment