Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 636 Bytes

setup-cocoapods.md

File metadata and controls

39 lines (27 loc) · 636 Bytes

How to setup / install cocopods

Update

> pod install --repo-update

Setup

> sudo gem install cocoapods
> cd <project>
> pod init
> vi Podfile
> pod install

Close project. Reopen with workspace file. Use.

Command line search

How to search for pod from command line (better than web)

> pod repo update
> pod search firebase
- pod  'AppDynamicsAgent', '~> 2020.3.0'
> pod install

Note: If you pod isnt found and it comes from custom repos run pod repo update.

Links