Skip to content

Instantly share code, notes, and snippets.

@ranmyfriend
Created February 13, 2019 06:21
Show Gist options
  • Save ranmyfriend/a8d48b8f226fc1d64949569995e4157c to your computer and use it in GitHub Desktop.
Save ranmyfriend/a8d48b8f226fc1d64949569995e4157c to your computer and use it in GitHub Desktop.
3rd Party Dependency Tool commands
3rd Party Dependency Tool commands
Cocoapod:
1)Pod initialization
Command: pod init
2)Pod installation or updation
Command: pod install or pod update
Carthage:
1)Carthage initialization
Command: touch cartfile
2)Carthage installation or updation
Command: carthage update --platform ios
Swift Package Manager(SPM):
1)SPM initialization
Command: swift package init
2)SPM installation
Command: swift build
3)Xcode project generation
Command: swift build generate-xcodeproj
4)SPM resolve
Command: swift build resolve
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment