Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #if not yet installed on the system
  2. sudo gem install -n /usr/local/bin cocoapods
  3. #or
  4. sudo gem install cocoapods
  5.  
  6. #In the project's folder
  7. pod init
  8.  
  9. #open and edit Podfile
  10. open -a Xcode Podfile
  11.  
  12. #Uncomment platform :ios, '9.0'
  13. #Uncomment user_frameworks! if you're using Swift
  14.  
  15. pod install
  16.  
  17. #A new file <project>.xcworkspace was created. Use it from now on.
  18.  
  19. Done!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement