From the course: Shared Economy for iOS Development

Unlock the full course today

Join today to access over 22,700 courses taught by industry experts or purchase this course individually.

Adding CocoaPods

Adding CocoaPods - iOS Tutorial

From the course: Shared Economy for iOS Development

Start my 1-month free trial

Adding CocoaPods

- [Narrator] Again we set everything up we need with AWS through amplify for authentication but now we need to set it up for our project. A great way to be able to include frameworks that we'll need, is using CocoaPods. You can learn more about CocoaPods at CocoaPods.org. The main thing we need to look up is how to install it. And here's the command right here. Sudo gem install CocoaPods. And I'll run that in the terminal. So I'll paste that here, enter my password. And it'll install CocoaPods for the computer. And just like we do with Amplify, we'll have to initialize our specific project. Once CocoaPods is installed, we can set up our specific project in the project directory. Let's make sure we're still there, we are. And now we can run pod init on our project. This is mainly just going to create our pod file. So if we do an LS we see we have the pod file and we'll edit that to specify what actual CocoaPod we want to include in our project. So down under the line that says pods for…

Contents