Skip to content

Instantly share code, notes, and snippets.

@tareq3
Last active July 12, 2022 12:08
Show Gist options
  • Save tareq3/d75bf966728d6d3bf851a6074711fe84 to your computer and use it in GitHub Desktop.
Save tareq3/d75bf966728d6d3bf851a6074711fe84 to your computer and use it in GitHub Desktop.

All about podfile for iOS

What is use_frameworks!

How to add any dependency in podfile

pod 'Alamofire', '~> 5.6'

OR

pod 'Alamofire'

Pod install from git repository

 pod 'RandomCars', :git => 'https://github.com/tareq3/RandomCarsFramework.git'

pod install from a specific tag of git

 pod 'RandomCars', :git => 'https://github.com/tareq3/RandomCarsFramework.git',  :tag => '0.2'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment